From 0f897ab1b34b224503843770daf1ae85e2e8c0ff Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Thu, 2 Oct 2025 11:51:41 -0400 Subject: [PATCH] Getting the relay pool up to speed --- README.md | 26 +- build.sh | 1 + debug.log | 4365 ++++++++++++++++++++++++++++++++ nostr_core/core_relay_pool.c | 528 ++-- nostr_core/nostr_core.h | 20 +- pool.log | 852 +++++++ tests/pool_test | Bin 0 -> 182424 bytes tests/pool_test.c | 679 +++++ tests/relay_synchronous_test | Bin 0 -> 173448 bytes tests/relay_synchronous_test.c | 242 ++ tests/sync_relay_test | Bin 163520 -> 177208 bytes tests/sync_relay_test.c | 7 +- tests/wss_test | Bin 163392 -> 0 bytes tests/wss_test.c | 103 - 14 files changed, 6515 insertions(+), 308 deletions(-) create mode 100644 pool.log create mode 100755 tests/pool_test create mode 100644 tests/pool_test.c create mode 100755 tests/relay_synchronous_test create mode 100644 tests/relay_synchronous_test.c delete mode 100755 tests/wss_test delete mode 100644 tests/wss_test.c diff --git a/README.md b/README.md index 41ec5a01..2f4a5ad4 100644 --- a/README.md +++ b/README.md @@ -302,20 +302,32 @@ publish_result_t* synchronous_publish_event_with_progress(const char** relay_url ### Relay Pools (Asynchronous) ```c -// Create and manage relay pool -nostr_relay_pool_t* nostr_relay_pool_create(void); +// Create and manage relay pool with reconnection +nostr_pool_reconnect_config_t* config = nostr_pool_reconnect_config_default(); +nostr_relay_pool_t* nostr_relay_pool_create(nostr_pool_reconnect_config_t* config); int nostr_relay_pool_add_relay(nostr_relay_pool_t* pool, const char* relay_url); void nostr_relay_pool_destroy(nostr_relay_pool_t* pool); -// Subscribe to events +// Subscribe to events (with auto-reconnection) nostr_pool_subscription_t* nostr_relay_pool_subscribe( nostr_relay_pool_t* pool, const char** relay_urls, int relay_count, cJSON* filter, void (*on_event)(cJSON* event, const char* relay_url, void* user_data), - void (*on_eose)(void* user_data), void* user_data); + void (*on_eose)(void* user_data), void* user_data, int close_on_eose); -// Run event loop +// Run event loop (handles reconnection automatically) int nostr_relay_pool_run(nostr_relay_pool_t* pool, int timeout_ms); int nostr_relay_pool_poll(nostr_relay_pool_t* pool, int timeout_ms); + +// Reconnection configuration +typedef struct { + int enable_auto_reconnect; // Enable automatic reconnection + int max_reconnect_attempts; // Maximum retry attempts + int initial_reconnect_delay_ms; // Initial delay between attempts + int max_reconnect_delay_ms; // Maximum delay cap + int reconnect_backoff_multiplier; // Exponential backoff factor + int ping_interval_seconds; // Health check ping interval + int pong_timeout_seconds; // Pong response timeout +} nostr_pool_reconnect_config_t; ``` ### NIP-05 Identifier Verification @@ -370,6 +382,9 @@ The library includes extensive tests: # Individual test categories cd tests && make test + +# Interactive relay pool testing +cd tests && ./pool_test ``` **Test Categories:** @@ -383,6 +398,7 @@ cd tests && make test - **Relay Communication**: `relay_pool_test`, `sync_test` - **HTTP/WebSocket**: `http_test`, `wss_test` - **Proof of Work**: `test_pow_loop` +- **Interactive Pool Testing**: `pool_test` (menu-driven interface with reconnection testing) ## ðŸ—ï¸ Integration diff --git a/build.sh b/build.sh index 8f5129e9..2862e555 100755 --- a/build.sh +++ b/build.sh @@ -491,6 +491,7 @@ SOURCES="$SOURCES cjson/cJSON.c" SOURCES="$SOURCES nostr_core/utils.c" SOURCES="$SOURCES nostr_core/nostr_common.c" SOURCES="$SOURCES nostr_core/core_relays.c" +SOURCES="$SOURCES nostr_core/core_relay_pool.c" SOURCES="$SOURCES nostr_websocket/nostr_websocket_openssl.c" SOURCES="$SOURCES nostr_core/request_validator.c" diff --git a/debug.log b/debug.log index 9d52076f..3e3acbe8 100644 --- a/debug.log +++ b/debug.log @@ -67,3 +67,4368 @@ Final event: { [11:57:56.895] RECV nostr.mom:443: ["EVENT","sync_2_1759247875",{"content":"\"No matter how economically or politically complex our human societies appear, they nevertheless remain accountable to the regularities and vagaries of the natural world.\"\n\n-Roy Sebag\n\n#TheQuoteShelf \n\n\n\nhttps://blossom.primal.net/6968f243f29a1f125f049ea798274b13efe44144724bf507cd39246fdd5e4ff6.webp","created_at":1759247875,"id":"0f241242cc645089e4c50a3cec0cf82ec11d7867cde7e257ad7651f836088bf6","kind":1,"pubkey":"356875ffd729b06eeb4c1d7a70a1f750045d067774d21c0faffe4af2bf96a2e8","sig":"d1665367d1ae571b81a624e2ca101f3267af66923389d6ef4f8f4adb452e7632a87f104f9f328363459aaf7537cae583952f169ce5d80a73b8371fe0d1d9ea60","tags":[["t","TheQuoteShelf"],["imeta","url https://blossom.primal.net/6968f243f29a1f125f049ea798274b13efe44144724bf507cd39246fdd5e4ff6.webp","m image/webp","ox 6968f243f29a1f125f049ea798274b13efe44144724bf507cd39246fdd5e4ff6","dim 979x551"]]}] [11:57:56.905] RECV nostr.mom:443: ["EOSE","sync_2_1759247875"] [11:57:56.905] SEND nostr.mom:443: ["CLOSE", "sync_2_1759247875"] + +=== NOSTR WebSocket Debug Log Started === +[10:39:23.703] SEND relay.laantungir.net:443: ["REQ", "sync_1_1759329563", { + "kinds": [1], + "limit": 1 + }] +[10:39:24.348] SEND nostr.mom:443: ["REQ", "sync_2_1759329563", { + "kinds": [1], + "limit": 1 + }] +[10:39:24.348] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759329563",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,244\nBlock Hash: 00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0\nTimestamp: 2025-10-01T14:31:15.000Z\nTransactions: 3,601\nBlock Size: 1.64 MB\nBlock Weight: 3,993,224 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917244","created_at":1759329132,"id":"8378488b65905b4483df4418ac3247808dfc398c2ba0154cebbf76f227cd4a2f","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"55476197e9609b5189c5dbfeff3614885e9f9b9593e57b84e4d97f8a3c571f6c8f9c4585dbbe05fee7b62bdb674fd5310b19f91c79c4310ee056adc308642147","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917244"],["published_at","1759329075"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["new_block","true"],["block_height","917244"],["block_hash","00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["block_time","1759329075"],["tx_count","3601"],["block_size","1715813"],["block_weight","3993224"],["difficulty","142342602928674.9"],["previous_block","000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["mempool_tx_count","1508"],["mempool_size","749351"],["memory_usage_pct","1.3"]]}] +[10:39:24.409] RECV relay.laantungir.net:443: ["EOSE","sync_1_1759329563"] +[10:39:24.409] SEND relay.laantungir.net:443: ["CLOSE", "sync_1_1759329563"] +[10:39:24.509] RECV nostr.mom:443: ["EVENT","sync_2_1759329563",{"content":"Airtable is an AI-native no-code platform for custom apps,data management, and collaboration,exclusive for its database-spreadsheet hybrid at enterprise scale.\nhttps://airtable.partnerlinks.io/cocz4xdq5phg\n\nMoosend handles email marketing automation for personalized campaigns, exclusive in cost-effective features for SMBs.\nhttps://trymoo.moosend.com/asmhx46y038l\n\n#nocode #data #spreadsheet #SpreadSheet #ExcelTips #Excel #GoogleSheets #EmailSignature #EmailSecurity #email #EmailMarketing #emailmarketing #freelance #freelancer #freelancerlife #freelancegraps #office","created_at":1759329563,"id":"b083528ee4a9a73927cf359c08a28ccbc94f591c81946c52fdc829c260ec6ecc","kind":1,"pubkey":"4aded154a339200d15ae7b750b5f4bee6c46e9c16cd81aefff1db5990577d1f6","sig":"4062b0fe191b9592f1c17250a53f6d383592e6867f2b52b1c3df382f02850e2ab185b018ab0b8e08fc2d01438adbaa13b0ce402d4b3051390b879546014183b0","tags":[["t","nocode"],["t","data"],["t","spreadsheet"],["t","exceltips"],["t","excel"],["t","googlesheets"],["t","emailsignature"],["t","emailsecurity"],["t","email"],["t","emailmarketing"],["t","freelance"],["t","freelancer"],["t","freelancerlife"],["t","freelancegraps"],["t","office"],["t","SpreadSheet"],["t","ExcelTips"],["t","Excel"],["t","GoogleSheets"],["t","EmailSignature"],["t","EmailSecurity"],["t","EmailMarketing"]]}] +[10:39:24.519] RECV nostr.mom:443: ["EOSE","sync_2_1759329563"] +[10:39:24.519] SEND nostr.mom:443: ["CLOSE", "sync_2_1759329563"] + +=== NOSTR WebSocket Debug Log Started === +[10:47:34.924] SEND relay.laantungir.net:443: ["REQ", "sync_1_1759330054", { + "kinds": [1], + "limit": 4 + }] +[10:47:35.570] SEND nostr.mom:443: ["REQ", "sync_2_1759330054", { + "kinds": [1], + "limit": 4 + }] +[10:47:35.570] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759330054",{"content":"Cats mispronouncing the only word they know 😂\nSound on 😂🤣😂🤣 https://video.nostr.build/60137b9b451fd1f23c53e0159fa47aa43ea681ce149a09444709fa25c0c272b4.mp4","created_at":1759329473,"id":"c1ab0bf881dc59f392cffda9883c9956e84222a279d155521ec0057fa550aca5","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"fd110015254bb1c35a04e7fd26a60c2bf705a7cfc4b968b472cf8bdc5731939f86a71e1343126c3fd77354738d32ab04eae40f644721570bc4a82b2fced2311e","tags":[["alt","A short note: Cats mispronouncing the only word they know 😂\nSou..."],["r","https://video.nostr.build/60137b9b451fd1f23c53e0159fa47aa43ea681ce149a09444709fa25c0c272b4.mp4"],["imeta","url https://video.nostr.build/60137b9b451fd1f23c53e0159fa47aa43ea681ce149a09444709fa25c0c272b4.mp4","x 85ef7cd6006e12912d6aeeb19289701ce8ac380e1461dc9225a7867aee5148a2","size 5276979","m video/mp4","dim 540x776","blurhash ^7K0$t0000u6ESE357V_BYtRDNX9E1?c01MI.ToK00$epdMwkCD%~Us*^g%NIUWA0,IU=X%g$y%29F9b~qt6IU%LT1xvMcRiyFxW00og%NxYaJs+","ox 85ef7cd6006e12912d6aeeb19289701ce8ac380e1461dc9225a7867aee5148a2","alt "]]}] +[10:47:35.631] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759330054",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,244\nBlock Hash: 00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0\nTimestamp: 2025-10-01T14:31:15.000Z\nTransactions: 3,601\nBlock Size: 1.64 MB\nBlock Weight: 3,993,224 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917244","created_at":1759329132,"id":"8378488b65905b4483df4418ac3247808dfc398c2ba0154cebbf76f227cd4a2f","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"55476197e9609b5189c5dbfeff3614885e9f9b9593e57b84e4d97f8a3c571f6c8f9c4585dbbe05fee7b62bdb674fd5310b19f91c79c4310ee056adc308642147","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917244"],["published_at","1759329075"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["new_block","true"],["block_height","917244"],["block_hash","00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["block_time","1759329075"],["tx_count","3601"],["block_size","1715813"],["block_weight","3993224"],["difficulty","142342602928674.9"],["previous_block","000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["mempool_tx_count","1508"],["mempool_size","749351"],["memory_usage_pct","1.3"]]}] +[10:47:35.691] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759330054",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,243\nBlock Hash: 000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850\nTimestamp: 2025-10-01T14:25:35.000Z\nTransactions: 3,281\nBlock Size: 1.58 MB\nBlock Weight: 3,993,430 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917243","created_at":1759328753,"id":"b5091c0682fe8fe709b3961437a0f6d19365badd590718eb878786d27f489a75","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"0d6182af3462c8ffd73935703bd2bc5991f66639986c1ce7d7609093e03dd0b98b39109ae001ccbb392b782292c49812e866f5d2f67e6a923a54b60ebeca882f","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917243"],["published_at","1759328735"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["new_block","true"],["block_height","917243"],["block_hash","000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["block_time","1759328735"],["tx_count","3281"],["block_size","1657177"],["block_weight","3993430"],["difficulty","142342602928674.9"],["previous_block","0000000000000000000074b28292653f859653b856026e15145768b287c1a481"],["mempool_tx_count","3177"],["mempool_size","1220733"],["memory_usage_pct","2.3"]]}] +[10:47:35.730] RECV nostr.mom:443: ["EVENT","sync_2_1759330054",{"content":"I believe dreams and deep rest is a key way that we heal and process our shit. ","created_at":1759330050,"id":"0be9f62eea43005aa00d461412b569b37fa16dcc5e8255b434ff2c83d29b7513","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"8147f3df0d8716af4c42e097a8f23e96d89de8d25bce902bfb8bb1a6063045056b9e248bbf7a509c513eb3e108d0b549d9a3af71cea361ee6d5e313ae034faf0","tags":[["e","fdc5bfd161ba0b223757994846cf20476927158adc3afdf2878c78e9bd136312","","root"],["e","aada63834c86383e9b243a0e35d11d294505cc66c0dbccf23245e5eec485eae8"],["e","268bcd9824f0fdc764bd69f80c1d0704ac688330f90c330eb16bbc03fed554a4","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[10:47:35.741] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759330054",{"content":"Bro what is this? You've got fake Adam and two vitaliks? ","created_at":1759328751,"id":"a6424d45b4aae22b7cd246583cc8cd1ff2e1e848a67cc9d0273ec0daaa4e3605","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"9948ec9a97c6d941e70896eac38c4bb364bec6022153fce722cd95672b70409da9c299618f9b85ac9492a7047d44f2b67bb37be8b6a9f1942a4da5c548a8dacc","tags":[["alt","A short note: Bro what is this? You've got fake Adam and two vit..."],["e","347b3ea85e35b7ffa70a6687642d1c27dab648aa5cd8c29b5ba93fd5a2eb56b3","wss://relay.damus.io/","root","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca"],["e","f4dcc0558c2b943452eeb9c43c47c1ed5fa3093d86839decbaa7f64b5b274dd1","wss://wheat.happytavern.co/","reply","dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491"],["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca","wss://aggr.nostr.land/"],["p","dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491","wss://bitcoiner.social/"]]}] +[10:47:35.741] RECV nostr.mom:443: ["EVENT","sync_2_1759330054",{"content":"I guess they are still open during the shutdown. ","created_at":1759330009,"id":"dbb33956f0aed99b29c03ee892dd5378d35532044b8cee611432fa961795177a","kind":1,"pubkey":"a97016de828730ac76365759940b728591bd63110aa8aff5ef9e59b9f8ee3633","sig":"2c6d02f40f7f851e4db42a9cc5a7d1805f36e22193d3806973f32f1092174bc1a9cfda1d4da42063943356e30111f3f070ec8c16bc48208157857153535708dc","tags":[["alt","A short note: I guess they are still open during the shutdown. "],["e","e4da56926b54828001aee713de495c93f979df87ce4e69165eb22b7a482bee55","wss://relay.primal.net/","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","wss://bevo.nostr1.com/"]]}] +[10:47:35.751] RECV relay.laantungir.net:443: ["EOSE","sync_1_1759330054"] +[10:47:35.751] SEND relay.laantungir.net:443: ["CLOSE", "sync_1_1759330054"] +[10:47:35.751] RECV nostr.mom:443: ["EVENT","sync_2_1759330054",{"content":"What the phó? ","created_at":1759330003,"id":"8bfa887dddadd0c66f925f3093c6ed19e79455ffc292fd61d0e324318ee418a1","kind":1,"pubkey":"05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6","sig":"98c3cc352619692bb9e0d0e3d3c7e8945982610ad62a99bb645aac588d84cc7496c91797090217187e5d843a93426079794634a359e7173c8833c271a2bc7e6e","tags":[["alt","A short note: What the phó? "],["e","1b44b741737902fbe3228b95aea6217e8f59297574e8d55f7aa4be5a9ba4a784","wss://nos.lol/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"]]}] +[10:47:35.762] RECV nostr.mom:443: ["EVENT","sync_2_1759330054",{"content":"I do feel a bit better than usual....\n\n🤔","created_at":1759329998,"id":"268bcd9824f0fdc764bd69f80c1d0704ac688330f90c330eb16bbc03fed554a4","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"9fcc2d5e2ae87732d6cd52d61185d19e00adf15fce7c42928752690076f867c30d11ce6e6b42604470742a1ff746292de30d7169651b70346c1e2b29b73497c5","tags":[["alt","A short note: I do feel a bit better than usual....\n\n🤔"],["e","fdc5bfd161ba0b223757994846cf20476927158adc3afdf2878c78e9bd136312","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","f688c2f2cd9b19996a7a68da0e546c1b25a0865500c72d88fa9bd41e9ef74882","wss://nostr.wine/","","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["e","a4bfba0f5da0cdb7d3f83400288df38c5162ce66b71369d60df6c3f5d865110d","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","aada63834c86383e9b243a0e35d11d294505cc66c0dbccf23245e5eec485eae8","wss://nostr.wine/","reply","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/"]]}] +[10:47:35.772] RECV nostr.mom:443: ["EOSE","sync_2_1759330054"] +[10:47:35.772] SEND nostr.mom:443: ["CLOSE", "sync_2_1759330054"] + +=== NOSTR WebSocket Debug Log Started === +[10:57:13.672] SEND nostr.mom:443: ["REQ", "pool_1_1759330633", { + "kinds": [1], + "limit": 10 + }] +[10:57:13.912] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759330633", { + "kinds": [1], + "limit": 10 + }] +[10:57:14.603] SEND nostr-pub.wellorder.net:443: ["REQ", "pool_1_1759330633", { + "kinds": [1], + "limit": 10 + }] +[10:57:14.603] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That is awesome! I am somewhat new to the live coding rabbithole, but I am all about it! The more it can integrate with outboard gear the better, and csound looks pretty capable there, even if it is old-school. \n\n","created_at":1759330621,"id":"a72b317d4caebe72dab0c77a484a9fa16ccd060c380928c0561628f8a62981ac","kind":1,"pubkey":"7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","sig":"7a31ef01993e4a7be4d044b974b7313090ba0cea74effd70a9d7d016219ba6f78a304e9c660825f14c0a281e4745ab45dda4ebb80338a229c554acf07b9b162b","tags":[["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://at.nostrworks.com/"],["p","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6","wss://feeds.nostr.band"],["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","52fa4d3ce36f0a1412425e61a11deab295b499f586d97c761a8435e312f13d38","wss://feeds.nostr.band","reply","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6"],["e","a3b93e2510a204929841206e315af1381fbf4b79144a4cf35ccbf4ecfb547138","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1"]]}] +[10:57:14.603] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🎯","created_at":1759330457,"id":"b2e068c3b52d98e7bf03d28bdc2ac9989c7d728165b187bac926e9bce81c360e","kind":1,"pubkey":"2f5de0003db84ecd5449128350c66c7fb63e9d02b250d84af84f463e2f9bcef1","sig":"36537f15c339b12d4486b7ce16b0e9f5769a3117bb1e5be990ff9c59ee19646b7101b12349b6abd58bc85a695714491815fd8a839190ea54e9630c113d2d3cc5","tags":[["alt","A short note: 🎯"],["e","326842bc41892d3107fdc0343c37958fafcf1f2d26352d9ab59391c6fa96334d","wss://relay.primal.net/","root","06f4638e1640e01a8789575e8f2985727ca1e3227aa518dc4291ca39b6704e26"],["p","06f4638e1640e01a8789575e8f2985727ca1e3227aa518dc4291ca39b6704e26","wss://purplepag.es/"]]}] +[10:57:14.636] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"This documentary convinced me 100% that you are correct:\nhttps://www.imdb.com/title/tt12707104/\n\nAlong with his interview:\nhttps://www.youtube.com/watch?v=fp_k47uS2DA","created_at":1759330619,"id":"dc96b7a2b1109bee281ebd78a51ef19c2183814b48fab9d66b68f9e220337cb6","kind":1,"pubkey":"55809c7cabdb407d8b974119df902a539cc58b74b0b0540b6a5e24c073e29c8b","sig":"1b0108e1f14ec6c37aba6632308d4a522764d58266eb3004612742a45a91f9d4e7b9be96d2c64d0d2f886e67f3236bf2ddc37c4eb823cf6c15ab5a0408c8e24a","tags":[["alt","A short note: This documentary convinced me 100% that you are co..."],["e","d5eb243e9832f7e7ea6bbe1da14965bf6b28e6b39fecd36a6ff2bd469dc44f8f","wss://nostr.wine/","root","3bcc5632a4e750953a2016f991ad8caeb18ce7537b82f25e22c0bd3b9003d8b8"],["p","3bcc5632a4e750953a2016f991ad8caeb18ce7537b82f25e22c0bd3b9003d8b8","wss://eden.nostr.land/"],["r","https://www.youtube.com/watch?v=fp_k47uS2DA"],["r","https://www.imdb.com/title/tt12707104/"]]}] +[10:57:14.637] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,245\nBlock Hash: 00000000000000000000b631397e501fef6fa11dfbe489214a284fe75f03df12\nTimestamp: 2025-10-01T14:48:08.000Z\nTransactions: 3,387\nBlock Size: 1.58 MB\nBlock Weight: 3,993,476 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917245","created_at":1759330095,"id":"bc073160b2de2ccaf8ab115e169492d4205137dadd760b013b07a2b5f82a2ecd","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"61e8a2f042aca0cf7322774f32a2fbf0d57969c4dc227cc30cbef125333510756e1f77d99f702e42c6a7f6efcd8f0b86f34c36ad2c33a8037786de4a45d07c42","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917245"],["published_at","1759330088"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000000b631397e501fef6fa11dfbe489214a284fe75f03df12"],["new_block","true"],["block_height","917245"],["block_hash","00000000000000000000b631397e501fef6fa11dfbe489214a284fe75f03df12"],["block_time","1759330088"],["tx_count","3387"],["block_size","1654481"],["block_weight","3993476"],["difficulty","142342602928674.9"],["previous_block","00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["mempool_tx_count","2706"],["mempool_size","1246865"],["memory_usage_pct","2.1"]]}] +[10:57:14.670] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I won't fast because I am not Jewish but thank you for the wishes, nonetheless!","created_at":1759330611,"id":"5dc7e2b137ab86eb046dc43b73692109f8039bf4b139112684be8fcafa59432a","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"c9728b6b2dfe35d91a80c62a84412fa18f80d970da27220eac4caa39a5c794d668a2d28c493afa52e17c32dcbad54907893ba96302623abbc8e595d83e9ee682","tags":[["alt","A short note: I won't fast because I am not Jewish but thank you..."],["e","5c783994904c6eaa7d065a88ab8670ef29e72bd12104c0b1ee65701ea6b43da3","wss://relay.primal.net/","root","9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c"],["e","1255e23960e5ffafc62cdb1b7af74bb7af8fab37afed9ca737545f2bc59a29c8","wss://relay.damus.io/","reply","a74d0dea3f08c2a4c0dab1ede11ab6884c23da20f6f842d2fc10a97743e70606"],["p","9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","wss://relay.primal.net/"],["p","a74d0dea3f08c2a4c0dab1ede11ab6884c23da20f6f842d2fc10a97743e70606","wss://relay.damus.io/"]]}] +[10:57:14.670] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Cats mispronouncing the only word they know 😂\nSound on 😂🤣😂🤣 https://video.nostr.build/60137b9b451fd1f23c53e0159fa47aa43ea681ce149a09444709fa25c0c272b4.mp4","created_at":1759329473,"id":"c1ab0bf881dc59f392cffda9883c9956e84222a279d155521ec0057fa550aca5","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"fd110015254bb1c35a04e7fd26a60c2bf705a7cfc4b968b472cf8bdc5731939f86a71e1343126c3fd77354738d32ab04eae40f644721570bc4a82b2fced2311e","tags":[["alt","A short note: Cats mispronouncing the only word they know 😂\nSou..."],["r","https://video.nostr.build/60137b9b451fd1f23c53e0159fa47aa43ea681ce149a09444709fa25c0c272b4.mp4"],["imeta","url https://video.nostr.build/60137b9b451fd1f23c53e0159fa47aa43ea681ce149a09444709fa25c0c272b4.mp4","x 85ef7cd6006e12912d6aeeb19289701ce8ac380e1461dc9225a7867aee5148a2","size 5276979","m video/mp4","dim 540x776","blurhash ^7K0$t0000u6ESE357V_BYtRDNX9E1?c01MI.ToK00$epdMwkCD%~Us*^g%NIUWA0,IU=X%g$y%29F9b~qt6IU%LT1xvMcRiyFxW00og%NxYaJs+","ox 85ef7cd6006e12912d6aeeb19289701ce8ac380e1461dc9225a7867aee5148a2","alt "]]}] +[10:57:14.703] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Random thought. It would be funny if Saylor was printing so many MSTR shares (i.e., diluting common stock share holders) just to prove the point that stocks can be printed ad infinitum, but bitcoin cannot. A painful lesson for shareholders, but what better teacher than pain! 😂","created_at":1759330593,"id":"071a27c58bce0102c4ca56a276c35596435d7aff6a40f10b234091d390ab7a5f","kind":1,"pubkey":"32092ec1a258c9f2c11a9a5bb53b127ca20941f1803dd7f6715050ff8e9fd13a","sig":"170f2e0543d6929ebc85b2eaeeb8c8473e019e2ad9ac89cc3509bf365a6a47a3e4021de130df8cc78537f7cc79864447434a4bb1e40948e4d9d328afdea76a46","tags":[["alt","A short note: Random thought. It would be funny if Saylor was pr..."]]}] +[10:57:14.703] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,244\nBlock Hash: 00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0\nTimestamp: 2025-10-01T14:31:15.000Z\nTransactions: 3,601\nBlock Size: 1.64 MB\nBlock Weight: 3,993,224 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917244","created_at":1759329132,"id":"8378488b65905b4483df4418ac3247808dfc398c2ba0154cebbf76f227cd4a2f","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"55476197e9609b5189c5dbfeff3614885e9f9b9593e57b84e4d97f8a3c571f6c8f9c4585dbbe05fee7b62bdb674fd5310b19f91c79c4310ee056adc308642147","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917244"],["published_at","1759329075"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["new_block","true"],["block_height","917244"],["block_hash","00000000000000000001d7d619948ecd4eac83a0a47382fb11b19cc069e8faf0"],["block_time","1759329075"],["tx_count","3601"],["block_size","1715813"],["block_weight","3993224"],["difficulty","142342602928674.9"],["previous_block","000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["mempool_tx_count","1508"],["mempool_size","749351"],["memory_usage_pct","1.3"]]}] +[10:57:14.737] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Is Uptober usually followed by Downcember? Or is my memory deceiving me?","created_at":1759330578,"id":"1504b45cc9a6439ffd96f0c168a4f9ae21bac9ee1947e527a114d8feea42b184","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"b39bf06924e3e822ec96a28a32633b8763bd6a9d834345ac7d4644f915e59bcbb21c6020f161ac118eb6e0d67d7444484e184393057d47f1e9a6968ee680979c","tags":[]}] +[10:57:14.737] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,243\nBlock Hash: 000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850\nTimestamp: 2025-10-01T14:25:35.000Z\nTransactions: 3,281\nBlock Size: 1.58 MB\nBlock Weight: 3,993,430 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917243","created_at":1759328753,"id":"b5091c0682fe8fe709b3961437a0f6d19365badd590718eb878786d27f489a75","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"0d6182af3462c8ffd73935703bd2bc5991f66639986c1ce7d7609093e03dd0b98b39109ae001ccbb392b782292c49812e866f5d2f67e6a923a54b60ebeca882f","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917243"],["published_at","1759328735"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["new_block","true"],["block_height","917243"],["block_hash","000000000000000000002e7e467cc20287a7fc31a00a3e8f1d8685cd8dc25850"],["block_time","1759328735"],["tx_count","3281"],["block_size","1657177"],["block_weight","3993430"],["difficulty","142342602928674.9"],["previous_block","0000000000000000000074b28292653f859653b856026e15145768b287c1a481"],["mempool_tx_count","3177"],["mempool_size","1220733"],["memory_usage_pct","2.3"]]}] +[10:57:14.738] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"a72b317d4caebe72dab0c77a484a9fa16ccd060c380928c0561628f8a62981ac","pubkey":"7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","created_at":1759330621,"kind":1,"tags":[["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://at.nostrworks.com/"],["p","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6","wss://feeds.nostr.band"],["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","52fa4d3ce36f0a1412425e61a11deab295b499f586d97c761a8435e312f13d38","wss://feeds.nostr.band","reply","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6"],["e","a3b93e2510a204929841206e315af1381fbf4b79144a4cf35ccbf4ecfb547138","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1"]],"content":"That is awesome! I am somewhat new to the live coding rabbithole, but I am all about it! The more it can integrate with outboard gear the better, and csound looks pretty capable there, even if it is old-school. \n\n","sig":"7a31ef01993e4a7be4d044b974b7313090ba0cea74effd70a9d7d016219ba6f78a304e9c660825f14c0a281e4745ab45dda4ebb80338a229c554acf07b9b162b"}] +[10:57:14.738] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Hello Uptober, my old friend\nI’ve come to pump with you again\nBecause green candles softly gleaming\nLit the charts while I was dreaming\nAnd the number that looked higher in my brain\nStill remains\nWithin the sound of Bitcoin \n\n\n\nhttps://blossom.primal.net/b34d1e71a40ace55e2956476bf2cc6e151dc31fce8b036188e6a7de2a9ae57c6.jpg","created_at":1759330578,"id":"03fa323127c66a765a726eed46c6108cc92b35058e63b50e1cd7d2d93dc47abf","kind":1,"pubkey":"a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","sig":"2f97f1982fb932dd7c57eb14832135b8fd5a116e09f9ece90e3eed501c67839206786eb2dcdeaed63285559ba5a539d1b42d68188b2b4450ab96a8f99daed0ee","tags":[["imeta","url https://blossom.primal.net/b34d1e71a40ace55e2956476bf2cc6e151dc31fce8b036188e6a7de2a9ae57c6.jpg","m image/jpeg","ox b34d1e71a40ace55e2956476bf2cc6e151dc31fce8b036188e6a7de2a9ae57c6","dim 250x250"]]}] +[10:57:14.739] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Bro what is this? You've got fake Adam and two vitaliks? ","created_at":1759328751,"id":"a6424d45b4aae22b7cd246583cc8cd1ff2e1e848a67cc9d0273ec0daaa4e3605","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"9948ec9a97c6d941e70896eac38c4bb364bec6022153fce722cd95672b70409da9c299618f9b85ac9492a7047d44f2b67bb37be8b6a9f1942a4da5c548a8dacc","tags":[["alt","A short note: Bro what is this? You've got fake Adam and two vit..."],["e","347b3ea85e35b7ffa70a6687642d1c27dab648aa5cd8c29b5ba93fd5a2eb56b3","wss://relay.damus.io/","root","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca"],["e","f4dcc0558c2b943452eeb9c43c47c1ed5fa3093d86839decbaa7f64b5b274dd1","wss://wheat.happytavern.co/","reply","dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491"],["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca","wss://aggr.nostr.land/"],["p","dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491","wss://bitcoiner.social/"]]}] +[10:57:14.739] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"03fa323127c66a765a726eed46c6108cc92b35058e63b50e1cd7d2d93dc47abf","pubkey":"a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","created_at":1759330578,"kind":1,"tags":[["imeta","url https://blossom.primal.net/b34d1e71a40ace55e2956476bf2cc6e151dc31fce8b036188e6a7de2a9ae57c6.jpg","m image/jpeg","ox b34d1e71a40ace55e2956476bf2cc6e151dc31fce8b036188e6a7de2a9ae57c6","dim 250x250"]],"content":"Hello Uptober, my old friend\nI’ve come to pump with you again\nBecause green candles softly gleaming\nLit the charts while I was dreaming\nAnd the number that looked higher in my brain\nStill remains\nWithin the sound of Bitcoin \n\n\n\nhttps://blossom.primal.net/b34d1e71a40ace55e2956476bf2cc6e151dc31fce8b036188e6a7de2a9ae57c6.jpg","sig":"2f97f1982fb932dd7c57eb14832135b8fd5a116e09f9ece90e3eed501c67839206786eb2dcdeaed63285559ba5a539d1b42d68188b2b4450ab96a8f99daed0ee"}] +[10:57:14.739] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://www.youtube.com/watch?v=IHmR1eDzznI","created_at":1759330573,"id":"a39efb44a616524ea26363d2340b2b463f84fe1f1c19e165cd5e237da54814af","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"be6fd1b1f018a1c334c07defdd1ec17001173ca1ff3450e6eef02c6e204c214174d9d2fa1c14aedf6fc939b0b94a63e160d1ef3d7899a81da67394218be26ffb","tags":[]}] +[10:57:14.739] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Block 917242\n\n4 - high priority\n3 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759328725,"id":"12df58d5264f7bcae6a22f8588c5ef6f878e3d592cc3a224b1ee9f76eba2cee0","kind":1,"pubkey":"f03df3d4134230420cdf7acbb35f96a2542424246ab052ba24c6fec6a4d4f676","sig":"8419f9d66dd518b08eab329789a7d0a2d3482b3b9f483d79dd25e04954c4975ee65a52533d3d786d0f1a7f692b57e298a759c8590419e80704f7ca863df87772","tags":[]}] +[10:57:14.739] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"46ff955e2912d1140ede0ec786bdbef15d4fc171b17752d406c02146e74f3fcb","pubkey":"7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","created_at":1759330572,"kind":1,"tags":[["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://at.nostrworks.com/"],["p","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6","wss://feeds.nostr.band"],["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","52fa4d3ce36f0a1412425e61a11deab295b499f586d97c761a8435e312f13d38","wss://feeds.nostr.band","reply","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6"],["e","a3b93e2510a204929841206e315af1381fbf4b79144a4cf35ccbf4ecfb547138","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1"]],"content":"That is awesome! I am somewhat new to the live coding rabbithole, but I am all about it! The more it can integrate with outboard gear the better, and csound looks pretty capable there, even if it is old-school. \n\n","sig":"3fbb38fe5af70583ff43d13af566acf130a6459f70eb40445b9a5ef8e784fc9e0aee65fc6259d0a7cc265870ff4ffa70b36fa83039fedcf69a827386a88fc5af"}] +[10:57:14.739] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That is awesome! I am somewhat new to the live coding rabbithole, but I am all about it! The more it can integrate with outboard gear the better, and csound looks pretty capable there, even if it is old-school. \n\n","created_at":1759330572,"id":"46ff955e2912d1140ede0ec786bdbef15d4fc171b17752d406c02146e74f3fcb","kind":1,"pubkey":"7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","sig":"3fbb38fe5af70583ff43d13af566acf130a6459f70eb40445b9a5ef8e784fc9e0aee65fc6259d0a7cc265870ff4ffa70b36fa83039fedcf69a827386a88fc5af","tags":[["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://at.nostrworks.com/"],["p","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6","wss://feeds.nostr.band"],["p","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","52fa4d3ce36f0a1412425e61a11deab295b499f586d97c761a8435e312f13d38","wss://feeds.nostr.band","reply","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6"],["e","a3b93e2510a204929841206e315af1381fbf4b79144a4cf35ccbf4ecfb547138","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","7210583622172e5cfb82ef7cb3204491a5ac6796439bbbaf4534805a5238c3c1"]]}] +[10:57:14.739] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"\"Study Bitcoin\" is easier since there are so many fiat currencies. We're not all living in the US. 🤷","created_at":1759328514,"id":"0da4005a68b3a2874bbbc213913e4dc151f26d62dfd5450f6f1cdcbaac2c6021","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"62e973b1a72538c5041615974796308aff41614599d8aac9b26df65a496fe4b7cfb055c012ee3b47eda92a4b977fc3330b108483667fbea6886aeda4a88d0dd1","tags":[["alt","A short note: \"Study Bitcoin\" is easier since there are so many ..."],["e","13bff763386d5cc0bf76a8163b87da0865a9b1571610e6af929f6cb6085d1da9","wss://relay.primal.net/","root","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","wss://premium.primal.net/"]]}] +[10:57:14.740] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"ddd200988973934658ae6f6be34e21d756d54a0b1519eac9ac7802a7557fd910","pubkey":"d3cf5a0da8ec6a09a0d5132bb40d35b1e84b5f66eb62cb2279be2559e1f7cc5c","created_at":1759330544,"kind":1,"tags":[["alt","A short note: She said \"Ukraine is our first line of defense.\" M..."],["e","050ee48cf15851fa63545fd6cec101fcae60509f9748acfb46e7357b79687782","wss://relay.damus.io/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]],"content":"She said \"Ukraine is our first line of defense.\" Meaning she is at war with Russia and she controls Ukraine as a pawn to fight and die for her.","sig":"9dddd60af2e70a44f5c25d9ca67f4376635d8fa95e61c898d3eaa6050902de9c95ac2ef0d6b6526b382d74b2de9d0ddcf79d4b042a18cba227878b903ca9ead4"}] +[10:57:14.740] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Just imagine munching through a brothy shawl🥲","created_at":1759330568,"id":"07d6082a0c9bae25746832e540e0e32a67a07d6da8a209338cf5a480532bc761","kind":1,"pubkey":"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","sig":"740b01433440ec917d6684cf8096c60d112d24ec04debe8720d70edecc3714e337a622f3c6b77deacb57e4c7e2f8f7fea88eb307fc928365df8aebe3242b1cf9","tags":[["alt","A short note: Just imagine munching through a brothy shawl🥲"],["e","1b44b741737902fbe3228b95aea6217e8f59297574e8d55f7aa4be5a9ba4a784","wss://relay.nostr.band/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["e","8bfa887dddadd0c66f925f3093c6ed19e79455ffc292fd61d0e324318ee418a1","wss://relay.primal.net/","","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6"],["e","66651a98e06632c822520073aeab955e9add6c5297c71124dff88f30aa35184d","wss://relay.nostr.band/","","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["e","81ed33ae1d3faf404e80a77b371fefab6fa0e74b77dbd97afb38f6c8aa1398d8","wss://relay.primal.net/","reply","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"],["p","05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6","wss://relay.jmoose.rocks/"]]}] +[10:57:14.740] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"My issue will always be with those who wish for the state to intervene.","created_at":1759328507,"id":"c72a4722f92439aa9b73d629efe6a027763539f6c1ace6ebbbbc22d7f411d11a","kind":1,"pubkey":"55809c7cabdb407d8b974119df902a539cc58b74b0b0540b6a5e24c073e29c8b","sig":"08f71a9c3c43d31d8909e1cf166c88fb813174f068e6218a55b239511a98e0190ee1677328fc03d472fdba324f4d58746adb5b0e2e58cace306d41d0e6fb5d18","tags":[["alt","A short note: My issue will always be with those who wish for th..."],["e","83482db32b51306c9954e30ebd242b713c411acc021b44e3c1ffb52f41a06c1f","wss://relay.nostr.band/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]]}] +[10:57:14.740] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"7fc2305de319c9104e926a6d314bda7f68092f822b0ee6af3dc12e31b88ecc41","pubkey":"d3de41d408a33090fa0c4e89093def3ae7ee86f3e3d1286beea5e53f566fff7b","created_at":1759330472,"kind":1,"tags":[["alt","A short note: As a generative AI fan i'd consider this a complim..."],["e","3490a5d178e3f87c9e219a12fa52bbe63f03ae722cddf355c0d5c65eac63fcec","wss://relay.damus.io/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]],"content":"As a generative AI fan i'd consider this a compliment","sig":"1267023b9cf60f3b3f79b35f74be3653717b02ad3867eb265fa50ec20e1cb1c0fb08420136b81045d70fa006fbec869f7db79a649e4c2e41d91ca1ba6af9a27d"}] +[10:57:14.740] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I agree, I want one!","created_at":1759330539,"id":"17f663a2ab73d804f9c47908580deab88f80de6cf19860efac501cfd502917d0","kind":1,"pubkey":"dd1f9d502c7951df47e8f8ed245e8bfa24f7e82c28f19399a8f0e74b06113a21","sig":"86d46ca65ca2328ccfd767e2af9a9c6af6be02ba09ae2865ff484ab4a9f5b0da9e2ac7b4a1362eb69ac639e3f82b4f131bd1eb185478f37872ca756e5059e1ca","tags":[["alt","A short note: I agree, I want one!"],["e","abae9cac59919e001ccf7180064269334c7425f31e8d118962d6b6815fee8b47","wss://relay.nostr.band/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["e","bbe42708994b49cbfeed098552ab4482d3e014c200894b02d6eb107ae1ada237","wss://relay.nostr.band/","reply","314072c16fa9433e1374f62e5b02c8163946ed298a9cde3b1541513c29d19fff"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"],["p","314072c16fa9433e1374f62e5b02c8163946ed298a9cde3b1541513c29d19fff","wss://nostr.wine/"]]}] +[10:57:14.740] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Block 917242\n\n3 - high priority\n3 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759328426,"id":"d2a2b642993f0a59fb63182051e129c28285d02b34b20f8a3c565d94a3ee949a","kind":1,"pubkey":"f03df3d4134230420cdf7acbb35f96a2542424246ab052ba24c6fec6a4d4f676","sig":"f43451e0e6ad4f438520f86d76a67ad8cf7f801e132dd6f1072f24683c61a0af32833ae85374df91677fd1476ca8a4c07411b7320ef021fb94b44b3df06df1e0","tags":[]}] +[10:57:14.740] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"3244192866396fabd5917a08e3f0b19fa82f426e4c07c671b453bba258676de0","pubkey":"cb3b88dca81855d76206629ac0a60d1494c7b9fb3b03556dcabb4adc665728df","created_at":1759330447,"kind":1,"tags":[],"content":"2025/10/01 23:50:00 Earthquake Information\nMaximum Seismic Intensity 3\n\n[Seismic Intensity 1] Aomori, Akita, Yamagata, Fukushima\n[Seismic Intensity 3] Iwate, Miyagi\n#evacuate","sig":"0fbeeede7f9fc581c7d985dcda856e349e04e64a40316b5fa8710b83143e2ea87a8f751a2662b9223ddeeaa2ee9aeb933309e958d95432e8d2c2caab4cc04ecd"}] +[10:57:14.740] RECV nostr.mom:443: ["EOSE","pool_1_1759330633"] +[10:57:14.741] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759330633"] +[10:57:14.741] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"88fb010a763a20ccbdd6cf7a896823db17da9fee48e5fe15682babb45a8b5043","pubkey":"6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","created_at":1759330444,"kind":1,"tags":[["alt","A short note: #擦到没边\nhttps://www.iesdouyin.com/aweme/v1/playwm/?v..."],["t","擦到没边"],["r","https://www.iesdouyin.com/aweme/v1/playwm/?video_id=v0300fg10000d3egqrfog65g4omv40bg&ratio=720p&line=0"]],"content":"#擦到没边\nhttps://www.iesdouyin.com/aweme/v1/playwm/?video_id=v0300fg10000d3egqrfog65g4omv40bg&ratio=720p&line=0","sig":"a930c0666792c5436e5bd5fd88a353de5bbb70ef214d69da4004100d93c06667eee029dc1824b446b8ffd38b610209b6d2b110e3fe47fc286b0b1aaca18ee8ba"}] +[10:57:14.741] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"テレビãªã©æŒã£ã¦ã„ãªã„。ãªã®ã§ä¸–ã®ä¸­ã§ãªã«ãŒãŠãã¦ã‚‹ã®ã‹:3x2_nanmo_shiran:","created_at":1759330634,"id":"f0cbf34563e491d401ead54dbedb17f8a82437c010a5ba9258beb1212ec5684f","kind":1,"pubkey":"c08805f9bd4849049325747a8086a3c0e069adeb19d8f59ec4e6b5157b7d3416","sig":"2f1325c7832281ac9a124f809108b18f08537efbdaa1c1239eeb12c7d0d946e177281f93013748bf682046df0717f9f119315a51a468f64d27523003479087bd","tags":[["emoji","3x2_nanmo_shiran","https://raw.githubusercontent.com/mitsugu/customemoji/main/text/3.2.nanmo_shiran.webp"]]}] +[10:57:14.774] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"e9713c40e4b99ab0436b889d9d76995e771b3b1ad96849094f2f8059111ab745","pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","created_at":1759330430,"kind":1,"tags":[],"content":"L0la L33tz is a dumb fucking bitch. A dumb bitch with a huge dong. Troona L33tz","sig":"b54681f6a4217c1246a4b8725e1dd2fc86ab66ba0d6a87528c59e17e227200c367dabe9ab5db21830dcda4cb8c81b85795c9f6f4bdfc0b84a5d36b78023d28ce"}] +[10:57:14.840] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"8d4daa11e675c224d1610097b80866a99b016cfb375965b635d6fbd01a161032","pubkey":"df478568479de26b4a83c1bdc4dbab61b5cc82e1a312e2b28bc815a12a951e67","created_at":1759330417,"kind":1,"tags":[["alt","A short note: No ptoblem. I don't know what a Parliment is. 🤣"],["e","f1e5bd5a8164f5a2b2e65f817e6e4f0ab42b8944688c368e8fd2f12371b8a072","wss://nos.lol/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["e","519263a403733d1680b0eafff7bb57a88b6a34510ad80107930ce29473dea5ea","wss://relay.damus.io/","","df478568479de26b4a83c1bdc4dbab61b5cc82e1a312e2b28bc815a12a951e67"],["e","2dd7417a44c9815fbe63085bfe62ca547b23b2207f20d6aa87d384c8bebc935c","wss://relay.damus.io/","reply","f288a224a61b7361aa9dc41a90aba8a2dff4544db0bc386728e638b21da1792c"],["p","df478568479de26b4a83c1bdc4dbab61b5cc82e1a312e2b28bc815a12a951e67","wss://cache2.primal.net/v1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"],["p","f288a224a61b7361aa9dc41a90aba8a2dff4544db0bc386728e638b21da1792c","wss://relay.nos.social/"]],"content":"No ptoblem. I don't know what a Parliment is. 🤣","sig":"525c7af4a95d03e43f34c05897d4fd949e55a953513a62f2258b70e6a625c724f8fc462e33f5f0e942da94013afda18c77ba25860a20211786ff7e6dc2e38c9b"}] +[10:57:14.907] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"fe539eea949504eb9434573fdc6ddaf1504a79f01ee745a6272448eca927a8d9","pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","created_at":1759330390,"kind":1,"tags":[["alt","A short note: Next level street dance https://video.nostr.build/..."],["r","https://video.nostr.build/2cf23843fe3d65c8a9c3f4edeb6810526378a6f8419199dae85f01eec7301801.mp4"],["imeta","url https://video.nostr.build/2cf23843fe3d65c8a9c3f4edeb6810526378a6f8419199dae85f01eec7301801.mp4","x 5abce14005aef37f61625274fe4c3741f26a1aa01e253eeb074c88b39a569151","size 1232655","m video/mp4","dim 480x852","blurhash ]8Byv+D%E0xa9Y00n%xuR,oJ00xvxvV@-;~CIoRjxaNG%hnzV@NeM_D%%MRkRPtRMvWFxut6t8%NM{o0kDn~b_oeInaeNF","ox 5abce14005aef37f61625274fe4c3741f26a1aa01e253eeb074c88b39a569151","alt "]],"content":"Next level street dance https://video.nostr.build/2cf23843fe3d65c8a9c3f4edeb6810526378a6f8419199dae85f01eec7301801.mp4","sig":"753f8e2442d1e697732b65793beff2a4a467211df206b834cfd1b2c7e0965469a025fba7f61de25dc287571579598aa164131c56ee8d45d98f501f30c9c7f473"}] +[10:57:14.973] RECV nostr-pub.wellorder.net:443: ["EOSE","pool_1_1759330633"] +[10:57:21.291] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"5dc7e2b137ab86eb046dc43b73692109f8039bf4b139112684be8fcafa59432a","pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","created_at":1759330611,"kind":1,"tags":[["alt","A short note: I won't fast because I am not Jewish but thank you..."],["e","5c783994904c6eaa7d065a88ab8670ef29e72bd12104c0b1ee65701ea6b43da3","wss://relay.primal.net/","root","9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c"],["e","1255e23960e5ffafc62cdb1b7af74bb7af8fab37afed9ca737545f2bc59a29c8","wss://relay.damus.io/","reply","a74d0dea3f08c2a4c0dab1ede11ab6884c23da20f6f842d2fc10a97743e70606"],["p","9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","wss://relay.primal.net/"],["p","a74d0dea3f08c2a4c0dab1ede11ab6884c23da20f6f842d2fc10a97743e70606","wss://relay.damus.io/"]],"content":"I won't fast because I am not Jewish but thank you for the wishes, nonetheless!","sig":"c9728b6b2dfe35d91a80c62a84412fa18f80d970da27220eac4caa39a5c794d668a2d28c493afa52e17c32dcbad54907893ba96302623abbc8e595d83e9ee682"}] +[10:57:25.896] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That's a strength worth admiring. It's easy to be hard. ","created_at":1759330644,"id":"6d4a2a7814bc2e27e7e7ae8eef88cd765589e4d9d3655baeb0a582a4490c03d1","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"d7dc6f3cd6059ba888b8e0a95fb7dc4874fb916db9b935c3644fa0b58355a15fbe85b4ffa6c798a22f395bf3353f70b495c8c53a2b193de28aa6b442c2f0bd41","tags":[["e","326842bc41892d3107fdc0343c37958fafcf1f2d26352d9ab59391c6fa96334d","","root"],["p","06f4638e1640e01a8789575e8f2985727ca1e3227aa518dc4291ca39b6704e26"]]}] +[10:57:28.374] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"No podemos vivir sólo para nosotros mismos. Mil fibras nos conectan con el resto de la humanidad.\r\n\r\nHerman Melville.","created_at":1759330648,"id":"0f65363efefcb4a76f36088a6867cafe83e4813cc022c75b108ddbf348d1dc28","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"e7f22b7c59e06b028f32c43067be7b6a54fe9c822012a62f311b11f43982587d161740c8e45c8a9377961351053cbef7f956832ddd0b72bcfc69edaaa38ec048","tags":[]}] +[10:57:31.292] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"ãƒã‚«ã‚’見るã¨ãƒ†ãƒ¬ãƒ“ã«ãªã‚‹","created_at":1759330650,"id":"8029fb0a33295d7cb0fba5d3c9de53a2b8b6a9bd992d3e266c432e7e10fdec47","kind":1,"pubkey":"f40832e26b1d12f8a27717b606996baef68bc4b6b86c4a35ca827f6fbcbf511e","sig":"bc84953aa71e5a67132b9105416a259f26fa01fe2a1da87a70c24e6e620c717a0143e0cd6ea0d56945222d9de0465cb019c87aabf0272b2df98be55e773235e0","tags":[]}] +[10:57:38.704] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I’m skipping no-way-mber","created_at":1759330651,"id":"518087e4d872f8848ab9ca416a016f3d69f2f716129979c9a179b03ef671757d","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"1cf5bc65d9c048c3150bffcdbdc29ad0260f4fc5460e2d31dcc3aeab58ff19310df4552aa671ebc5e07d010c04be1916575efbf2c60ddaa9489726de022fe5c1","tags":[["e","1504b45cc9a6439ffd96f0c168a4f9ae21bac9ee1947e527a114d8feea42b184","","root"]]}] +[10:57:46.778] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GN 🚀🌛\nhttps://music.youtube.com/watch?v=GMtbXGdVPCs","created_at":1759330685,"id":"2bd9804668228b35abb0578b65479e52a8d63f18788b315cc1c047756fb5bce1","kind":1,"pubkey":"ff517fbfc457394aca1fba4ade184d7b6027eaede90009036800357cfde1561b","sig":"b5eab88ef462e15c1ca41964366f6b297b4ec4173656afb04abac7bc55447ee4f8e5abbf6dfee59a85729ee243a3b8ef38c6c060938c32a10cb9988d0ed8ad7a","tags":[["alt","A short note: GN 🚀🌛\nhttps://music.youtube.com/watch?v=GMtbXGdV..."],["r","https://music.youtube.com/watch?v=GMtbXGdVPCs"]]}] +[10:57:49.149] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"El amor siempre ganará. ðŸ¤","created_at":1759330668,"id":"14f290aead4d3d66ab6d093ade3dad456d0310c8b5e58acc24320dcb57c99a51","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"4c32c2ee0fa7c57c91d58df7a32da686dbd9e7b90769488378a6d264411950cda14f193aeccc57cbe84cbeee5df0ac35a5d75215754d25c4ebc9de8f92d0cd1c","tags":[]}] +[10:57:51.421] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I put together all the links, this time I didn't count them, you can find them here in the September folder https://luigi1256.github.io/Nostrools/","created_at":1759330669,"id":"2ee5ab3251f0a74a8f92872761ce2683a0430ec6909cdd6640f265e504a7dbdd","kind":1,"pubkey":"592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","sig":"a57da29c5d512c2f724d8042e58d5972bda2eb8a68abf8a62c82549774ce5bbb2134c3273d45aaefda89aa84e4a081e01cb637ee825cf5594dc1469385591c89","tags":[]}] +[10:57:52.255] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Filters don't work anymore anyways. ","created_at":1759330671,"id":"8da052705092984fc42e30ff3d6b84c2fe0388aa11e40973606baa1155bf335d","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"488f89a08e5e4bc3c1813b85f0defc2a8418068a83ff6e3fab7f5ca0d99a9eb00af703d39418f2b8e546d40c6eddb0d72ecaae194b43164001bcf37d45b5f4d1","tags":[["e","f83a89ead1544d4fa15830dee2d295f9fe359a17d4517d735ce89db7c79ac6d8","","root"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"]]}] +[10:57:52.322] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"No filter needed.\nhttps://image.nostr.build/437815fc8246a3dc4aa0bb85857447d2465b48401106391f65756c33d92a8bd4.jpg","created_at":1759274334,"id":"f83a89ead1544d4fa15830dee2d295f9fe359a17d4517d735ce89db7c79ac6d8","kind":1,"pubkey":"d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","sig":"7c2d8305991597d838451a1bdc4cfc166bf01b4a9a10eb346549be9c20c7fc79343f40b67fa3ad378c42ba46360c5d488df541f72ad9c206afe1239af345efa7","tags":[["alt","A short note: No filter needed.\nhttps://image.nostr.build/437815..."],["r","https://image.nostr.build/437815fc8246a3dc4aa0bb85857447d2465b48401106391f65756c33d92a8bd4.jpg"],["imeta","url https://image.nostr.build/437815fc8246a3dc4aa0bb85857447d2465b48401106391f65756c33d92a8bd4.jpg","x 4e4ea26366fc029207d9bbde9a63cf635bfcacfb68619d59f738431a826d80ca","size 312363","m image/jpeg","dim 1993x1495","blurhash #dGbhvWBE2ofofRkWCoLay?wWBRjs:ofayWVa}j[D*WBRkxZkBWBs:oefQIAWBWBt7j[WBs:j[oLNGWCjYt7oejsofj[WVo#oKaxt6a}f6oeoeWCW=oes.ofj[WBa}bHf6","ox 4e4ea26366fc029207d9bbde9a63cf635bfcacfb68619d59f738431a826d80ca","alt "]]}] +[10:58:17.509] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"No","created_at":1759330698,"id":"69831d942ab334c0b7fef841796976d1c22d060965eb5dfabc85923590145b2c","kind":1,"pubkey":"c6ddba5ee3dc641aa5b1b88bfed85ece646153bd9d598866c4122defb9c10a73","sig":"e8fc2e1c2b02f09faa8a024ba4d46992a3b08407341b77a15fd4857acda57a3a508cdc28fe54f9e110ef39192aeeeeaff4d3db176cb7c13ca7b632ea3f9c77d7","tags":[["e","41ee8bd4347e8c13e55ac880448b80b5b02174fbc042b264e5b8d1a9aa16644a","","root"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"]]}] +[10:58:32.492] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Plus, giving birth after 40 increases women's chances to live till 100. ","created_at":1759330705,"id":"3ba1808bb29df6cfec17a303008b6faf839b02e87f16e36e453994184349f1d7","kind":1,"pubkey":"5143c373df1b548a77d79ec74f27255d129b695b522dfb5bf43498ba4b501df9","sig":"08f644b1268cd64ba3309e2a100cf04263f2604d593b2772bc1447c831f3f19da0382108d08a2c1d27350d19120548db44c0ce733c04738ee839dd4cedea4cbd","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[10:58:33.217] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That's what I said. If you squint really hard, you can see my trailer in the back there. ","created_at":1759330712,"id":"dc82fc727f6a08ff5ccfce7928c73074ef50d83fb3d32cc3ee85f9159646ab44","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"17becd124752169fb98238530df85eea449bea97353f85ae2270415aa8b31b6f8077a4b36b932ed08a4746123b2737b5013076832e376f7b66ce7cfdaa6c0611","tags":[["e","f83a89ead1544d4fa15830dee2d295f9fe359a17d4517d735ce89db7c79ac6d8","","root"],["e","1a4eece507ed96e36dc18d7cdfd59306192959d3f80b08e3773160436e7a4207","","reply"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"],["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e"]]}] +[10:58:33.283] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"What are you doing in my neighborhood ","created_at":1759276112,"id":"1a4eece507ed96e36dc18d7cdfd59306192959d3f80b08e3773160436e7a4207","kind":1,"pubkey":"5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","sig":"e8f0d076b28dbe366cf715c776274602ac1abefc9568d61fa7bf379b6f6bab6c2a146be2c4b49a5dfbc892235645325747077f0e36774b638c1a5db48c51126e","tags":[["e","f83a89ead1544d4fa15830dee2d295f9fe359a17d4517d735ce89db7c79ac6d8","wss://relay.primal.net","root"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","","mention"]]}] +[10:58:46.294] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Wishing you a day filled with joy and success! \nhttps://images2.imgbox.com/78/cd/scnJd6To_o.jpg \n#ToshiPeaches","created_at":1759330726,"id":"2ed22e9f7fbed5cfe18bc2d7b8215c9e7cc95b19ef5a303421a061333bbd4d88","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"650666c4bb45835b6da8be5d57cbaeb17706766ac6e4131f0448dbc639d2265a75a9a8b9e2b2505cf41f3851f42d20f04b5dc8cadaa0713e2eeaf724c4b400c0","tags":[]}] +[10:58:46.327] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2ed22e9f7fbed5cfe18bc2d7b8215c9e7cc95b19ef5a303421a061333bbd4d88","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759330726,"kind":1,"tags":[],"content":"Wishing you a day filled with joy and success! \nhttps://images2.imgbox.com/78/cd/scnJd6To_o.jpg \n#ToshiPeaches","sig":"650666c4bb45835b6da8be5d57cbaeb17706766ac6e4131f0448dbc639d2265a75a9a8b9e2b2505cf41f3851f42d20f04b5dc8cadaa0713e2eeaf724c4b400c0"}] +[10:59:17.161] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Errmmm Bitcoin?\n\n\n😎 ","created_at":1759330753,"id":"d3021afa2c2f81b42456a4b5cd40c430f000357789db414d6099276ee716720d","kind":1,"pubkey":"81fa5b70a73a691c6e78823d035ffc44f6b505e6f03637759bd36e7a451539fd","sig":"4575dcffd71fe4209859e9922d0aaa8fb8233be0e11031a1bc5708af468e71a47b817553fe28459ac79a8010e7a26e3187896ee4887d07cec7c956c2b2835b05","tags":[["alt","A short note: Errmmm Bitcoin?\n\n\n😎 "]]}] +[10:59:24.369] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Iran calls for ‘comprehensive sanctions’ on Israel at UN rights council\n\nFrom Press TV\n\nIran has called for the immediate imposition of comprehensive sanctions against the Israeli regime in response to the genocide in Gaza.\n\nOct 1st 2025 10:41am EDT\n\nSource Link: https://www.presstv.ir/Detail/2025/10/01/756076/Iran-urges-UN-human-rights-council-to-punish-Israel-over-Gaza-genocide\n\nInternet Archive Link: https://web.archive.org/web/20251001144629/https://www.presstv.ir/Detail/2025/10/01/756076/Iran-urges-UN-human-rights-council-to-punish-Israel-over-Gaza-genocide\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1043682","created_at":1759330644,"id":"3fedf03edc32cada76b40af545d42c15b6cb49a9797d75b614b4ab91628fe100","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"8579c470fafa9fc85957f0e007cfb27e2a98489d0baddadc2435af2706a97954ea61384a4dcd415032e12b18fa3b103bef8ae39872711f343814c31dbfd3c671","tags":[]}] +[10:59:25.160] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"b9f3846e9b131933fdbe5d2a7d918c19f686231369f02341eae9930f1fbc5377","pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","created_at":1759330740,"kind":1,"tags":[["q","a96780268711c3f5c79637994aec95f9d5b8cfaa8117a0418b378845a5f4ffda"],["p","6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","","mention"],["t","asknostr"]],"content":"#asknostr 🚬 nostr:note149ncqf58z8plt3ukx7v54my4l82m3na2syt6qsvtx7yytf05lldq2gu039","sig":"8d44c57a26a505e5ff788a5953b41b6d9a0fe0f642ebc39ab884b289ea562613d6a9a6e3591f939dacaa8094a931210330177f80e163785abd1066d661281f0b"}] +[10:59:49.730] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Windy day.. 😅 https://video.nostr.build/10a33832f18d4b5a1503ea02326103da5c76d74fa679982d7e88df443b71405d.mp4","created_at":1759330782,"id":"d0a8afb2ad657cc863a7dd32a849b455e1b17602766fe8e92cf68af45460ea71","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"314d2106c85d445c4f9d9ba591ab05f59d62924e6c2d0671d8e7e7734653e0c04992b6d72d692f594cb23c309c00cf936b16ea3435f8163a60cb2bf5b2fbec1c","tags":[["alt","A short note: Windy day.. 😅 https://video.nostr.build/10a33832f..."],["r","https://video.nostr.build/10a33832f18d4b5a1503ea02326103da5c76d74fa679982d7e88df443b71405d.mp4"],["imeta","url https://video.nostr.build/10a33832f18d4b5a1503ea02326103da5c76d74fa679982d7e88df443b71405d.mp4","x a9e5c01f2c15c04f447325d4da2e8aa59faaf82a4c4e84e5aee44d092dc50be5","size 1223161","m video/mp4","dim 540x960","blurhash ]zH_}QoMS1bHR*.AfRjaj[aypJbGs:f6s:xvaya{ayfQs,ayayjtWBV?oLayj@j[Rjj[ayfRj[NGWXoffQfQWYj[a{ayj[","ox a9e5c01f2c15c04f447325d4da2e8aa59faaf82a4c4e84e5aee44d092dc50be5","alt "]]}] +[10:59:53.309] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Gm pv!","created_at":1759330792,"id":"9f875512017e22de2b495765b372d74a0eb3cc885a67e2812fc624ed5a7d6f46","kind":1,"pubkey":"22050dd3659b568c5cb352b0e81958fb986bd941031a90c74ba7f6d2480c11ea","sig":"43f4177994adac25fbd52860f5256cfcd2e6fc9420579050c756ddc4cc200b8ce79e4054efa0311d4f57ddc0dcc839fd78942d9de4ae7a35ecfefad1f0eb03d5","tags":[["alt","A short note: Gm pv!"],["e","589117b238f8896eb85a61a4aa7b0efc94cc69b47dc525a6ff7a952036434dfb","wss://relay.nostr.band/","root","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"]]}] +[11:00:01.577] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"4032256944a6e6e581c7bd5747ad84009829f9560beee4b40d85707613baa111","pubkey":"875702c0c577508aa9e4d4e117ca083eb4c5b5486e2d1310f59ba2dd34899ca8","created_at":1759330800,"kind":1,"tags":[],"content":"1001 https://hodl.camp/api/img/sats_per_euro/1001.png","sig":"2025a26fb82caa57618e6fccc7b3dbc8416980046716c40023366b1bd24e552a961b1d20ea4a533d362d3f0056fe1893c136d39b1757bf40283da873d1447f1a"}] +[11:00:02.806] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🎥 Check out this from #trailers :\n\nhttps://www.youtube.com/watch?v=zcqiH6BqmLU\n📌 Title: GREENLAND 2: MIGRATION Official Trailer (2026) Gerard Butler","created_at":1759330801,"id":"343884b3765eab17889d07b369e5c78b16606500e9b3555d2eb05a223be1fcf1","kind":1,"pubkey":"7e5fe48dee12c80cb57403d7056c01c5def2c98eca52b3d5fd3db13fc88c79d0","sig":"1abe949aa0fadfaefc383129f47f8c118ff392b88c4be508ab9543488e1bb215bf9664d2e06b58ab6dd1725ee1331494a4bcd72a30765888f393c5242addb5ef","tags":[["t","trailers"]]}] +[11:00:03.750] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Well AI is coming for them soon enough.","created_at":1759330795,"id":"1d72939de58520b9f8b47960190b4c9a4350e887e3ff381c6a31045659db68a8","kind":1,"pubkey":"ee6ea13ab9fe5c4a68eaf9b1a34fe014a66b40117c50ee2a614f4cda959b6e74","sig":"bebeec14de179bf79cddf10fdf4a17be3f905ff632a8af87cc80db2405505788ab56e65b12313efff5ae8829f044a2d1bab9efdb93488dbd63b1e270cb6be7c1","tags":[["e","5acc715819b4fecb7f118e5e353e4e6456bd1b8e44c2e27900ff8f2e0965be84","wss://nos.lol/","root"],["e","78f1b5dfcd94439a4e8bc5d821f74624f08f8674b2454dd8d70e354a8b81f515","","reply"],["p","61066504617ee79387021e18c89fb79d1ddbc3e7bff19cf2298f40466f8715e9"],["p","d07a72485fa176d967212b9e3b9556f41dcf1c07cfcffebacb1fc3690da499e2"]]}] +[11:00:04.123] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2fbc626ac5c9839b3600975540b76b0128ffd803ace5c29765387597655d554d","pubkey":"82e06d3bfd8cc0973b40b9b994a3dd64b4e70b30556a8df0ee998dcd8668cfa9","created_at":1759330803,"kind":1,"tags":[["t","bitcoin"]],"content":"The block height is 917245, and the current price for bitcoin is 117.4K USD. This means that you can get 852 sats for one dollar. The fear/greed index is 42: Neutral. Buy some â‚¿, it may catch on.","sig":"2f513980399513b86747507648f666bae2e5d98dbd7d84bbf0c2b1ef5295b619cd19cddf08fee45cbc5369e997b3df8ce7a837b9ffb202368e2f1bcded5d7b22"}] +[11:00:04.687] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"$117,292.74\n\n#Bitcoin #BTC $BTC $USD","created_at":1759330802,"id":"df5484aca342e6554073c4ade38b2c1bbdee01783b34d4b5c64b9c9f637ca713","kind":1,"pubkey":"207ce683797dc96fb3abf9e796bee59a5635e0bd80f413f0f2e0f6de23f5b8bb","sig":"fc06292b83d7324a752a157402289e262ade418e59f59fb9b0c7a234fdc954919b134506d1de61f195cd5fee37dbee1ff7bd4e19b9f25065a674d5b446d353ec","tags":[]}] +[11:00:05.767] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Bitcoin has INCREASED in DOLLAR. The current price is $117,394.80, the pokémon #117 is Seadra (Water) #bitcoin #pokemon #zap https://nostr.build/i/nostr.build_0fc2d307c61e5e370d482724c6056cac0f1740bc6c97b3a673b60266261f6ccc.png","created_at":1759330801,"id":"fa9cc3f3192182d57cf7c8f30ff1d8fd1043722d976dff7c984ba76b7df23d89","kind":1,"pubkey":"3c9b6600387f906a4c7b713ae9cf603b780d72a141cc6cd98e3700c06aeff970","sig":"efc632cca6eb2a4440399b284fb9cc90850767d98abb4374034c6cb764b0cf7220bb818ddaa9296d6317db6ec98add0be14d6954d0235bda37efb7ae1c9a86f2","tags":[["t","117"],["t","bitcoin"],["t","pokemon"],["t","zap"]]}] +[11:00:06.052] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"☕💻📚💯💓💓💓💓💯🤑💫 https://image.nostr.build/93c74e9b3ce649205750b8205dec7c127986f85138b37d4bc4ab40919856ffa2.jpg","created_at":1759330803,"id":"014ef5039332c4cb7f295e5df49a97a4b4b5eff17c1dad7d405be4e4ccb83e98","kind":1,"pubkey":"153aef07ec4ab1e50d7a36c691a2af444ac97cfca189da4a54b641bebd57406c","sig":"1f71980c3cbb8cdd24184c67a37e59efc59749c84d9161438a70b74d0fc97d7c6f181cf52a0ab6ef22ec68a4f4153f14dc467d5ccf45392d38f0077e7b1b64ad","tags":[["r","https://image.nostr.build/93c74e9b3ce649205750b8205dec7c127986f85138b37d4bc4ab40919856ffa2.jpg"],["imeta","url https://image.nostr.build/93c74e9b3ce649205750b8205dec7c127986f85138b37d4bc4ab40919856ffa2.jpg","m image/jpeg","alt Verifiable file url","x fe5425ad96557893e23e58ab3a06ee144ec85c5e254c927fc37c00f053d277b0","size 79156","dim 1080x1920","blurhash ]:IXy~%gxtaeaf~ptRozWBV@ozRke.RjRjM}V[oIaxWXWBs.azj]fkoLofRjaxj[jbWVV[a#off5ayj[azj?j[ayfiWBf6","ox 93c74e9b3ce649205750b8205dec7c127986f85138b37d4bc4ab40919856ffa2"]]}] +[11:00:10.398] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"All people should make babies. One of the most damaging lies is to think otherwise. IMO","created_at":1759330809,"id":"b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"061b7d02fa22d6abf2477b77d9b8001f37814745a93886b317019d26590e98af7da9adfedf6dbaf91a287eda24487294b2ec97a5e7916528d22cb0bf307e9edb","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"]]}] +[11:00:10.464] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"White people should be having as many babies as they can... we're only 13% of global population! \nnostr:nevent1qqs8acectspf2t7f834elazfwrs59p96smxsj9gefkhgau8xjyfqz8qppemhxue69uhkummn9ekx7mp0qgs04hsk2ys57hen7wrqnwn53v0fkgmuheql9e3zz3w0p7pazuepcesrqsqqqqqpjs7wey","created_at":1759330728,"id":"724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"08e73538d259d3d84f2dbc9991edf88e62f886cb43ff017dce10405625d0d05e2560e3a5e0df1bf9e3be6486569aee4f43a87fef3dec2d0f5293ab90aa034625","tags":[["alt","A short note: White people should be having as many babies as th..."],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","wss://relay.damus.io/"],["q","7ee3385c02952fc93c6b9ff44970e14284ba86cd0915194dae8ef0e69112011c","wss://nos.lol/","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"]]}] +[11:00:10.860] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#memes\n\nhttps://image.nostr.build/5aa8f8561b53fc8d7ad213873b8e372f47d3b9a09bd356b71f90e0da30828d0a.jpg","created_at":1759330808,"id":"58b7a4a14222d8f7753863f922488bbcf3d5a87b8c83ff72384068b9c8fb8b1a","kind":1,"pubkey":"3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757","sig":"5068324942dd9edded3d21c2e79459495eb77898a4eb2fbad8f6947839b0849729365350a6e4a0096080e4ac98e37efb608e6d302d5078ae20fe96294582b451","tags":[["imeta","url https://image.nostr.build/5aa8f8561b53fc8d7ad213873b8e372f47d3b9a09bd356b71f90e0da30828d0a.jpg","blurhash e8R{*}4n9FWA-:D%t69FD%xuD%xu4nIUxu-;t7D%WBt700j[azj[xu","dim 615x339"],["t","memes"],["r","https://image.nostr.build/5aa8f8561b53fc8d7ad213873b8e372f47d3b9a09bd356b71f90e0da30828d0a.jpg"]]}] +[11:00:13.516] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d0a8afb2ad657cc863a7dd32a849b455e1b17602766fe8e92cf68af45460ea71","pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","created_at":1759330782,"kind":1,"tags":[["alt","A short note: Windy day.. 😅 https://video.nostr.build/10a33832f..."],["r","https://video.nostr.build/10a33832f18d4b5a1503ea02326103da5c76d74fa679982d7e88df443b71405d.mp4"],["imeta","url https://video.nostr.build/10a33832f18d4b5a1503ea02326103da5c76d74fa679982d7e88df443b71405d.mp4","x a9e5c01f2c15c04f447325d4da2e8aa59faaf82a4c4e84e5aee44d092dc50be5","size 1223161","m video/mp4","dim 540x960","blurhash ]zH_}QoMS1bHR*.AfRjaj[aypJbGs:f6s:xvaya{ayfQs,ayayjtWBV?oLayj@j[Rjj[ayfRj[NGWXoffQfQWYj[a{ayj[","ox a9e5c01f2c15c04f447325d4da2e8aa59faaf82a4c4e84e5aee44d092dc50be5","alt "]],"content":"Windy day.. 😅 https://video.nostr.build/10a33832f18d4b5a1503ea02326103da5c76d74fa679982d7e88df443b71405d.mp4","sig":"314d2106c85d445c4f9d9ba591ab05f59d62924e6c2d0671d8e7e7734653e0c04992b6d72d692f594cb23c309c00cf936b16ea3435f8163a60cb2bf5b2fbec1c"}] +[11:00:20.189] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"313706574f441579b8d6ca15b2d2b853464d5023d9256f148e0cd474f4a243a1","pubkey":"000003432b33057d1eb6d788445cc46811462bbd590d6b546834b415eb5506bf","created_at":1759330819,"kind":1,"tags":[],"content":" \nhttps://klyker.com/wp-content/uploads/2020/03/sexy-bikini-babes-7.jpg \n#mempool #girls (♥‿♥) - â¤ï¸ MimiG â¤ï¸ ","sig":"76fb1b8fa30faf04b5b43899a8c4767b76faecccfd24901ac7eeb50b5bc58784c8e5ed6f70588d703e634f33cd6892cc0802e2692e7ac184c7f2d5daadf5db5b"}] +[11:00:22.273] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Your hourly dose of #Bitcoin facts\n\nhttps://www.shrtct.site/NOSTRImages/6ad87958-7a24-432a-9510-2ed5a728aa72.PNG\n\n💵 PRICE:\n • Binance: $117,300.00\n • Coinbase: $117,389.07\n • 24h High: $117,441.26\n • 24h Low: $112,826.48\n • Change last 1h: $431 (0.37%)\n • Change last 24h: $3,733 (3.29%)\n\nhttps://www.shrtct.site/NOSTRImages/831a9486-6d85-4407-bd4b-b13ac1ac2217.PNG\n\n📈 MARKET:\n • Bitcoin Market Dominance: 58.97%\n\n🕒 Moscow Time: 08:53\n\nâ›ï¸ MEMPOOL:\n • Transactions in mempool: 140,383\n • Block queue in mempool: 50\n • Time since last block: 11m 57s\n\n💰 MINERS RECEIVE (BTC):\n • Last block: 0.043\n • Average last 24 hours: 0.020\n • Average last 30 days: 0.031\n • Average last 90 days: 0.030\n • Average last 365 days: 0.057\n • Current block reward: 3.125\n\nhttps://www.shrtct.site/NOSTRImages/71798bc2-3bfe-426d-b9f2-08531ffa4f9c.PNG\n\n🔗 BLOCKCHAIN:\n • Tx Volume (24h): $64,728,596,165.00\n • Number of Inscriptions: 107,116,407\n • Hashrate: 1061.57 EH/s\n • Current block height: 917,245\n\nhttps://www.shrtct.site/NOSTRImages/4d80ec2c-ebc8-4897-8280-5b58811b1106.PNG\n\nâš¡ LIGHTNING NETWORK:\n • Capacity: 3,836.10 BTC\n • Nodes: 12,493 (38 new 24h)\n • Channels: 43,395 (252, new 24h)\n\nðŸ—“ï¸ HALVING:\n • Days until next halving: 921\n • Halving date: 2028-04-10\n\nDM for feature suggestions, #zaps to support server cost, Share/Boost/Quote to help spread.\n\nTime: 17:00 CET - 11:00 ET - 10:00 CT\n\nv.1.1.07","created_at":1759330818,"id":"3b4e7f1d91e3159e877f7bb141ddd0395aa044f14bab531088df5ae259b9958d","kind":1,"pubkey":"34273abad916f22d31f8b24297f4c689cfd01fae5855a1fc0764f4dfa17d8ba1","sig":"f874df6ae8745ba097b5e4ff5b51e34ea32afc915f2d92d49945156641070d6fb8bf00bb98bcbee02c2e9c78ef0b149d0dc6bc53caa289bfa1e2ab192d743d42","tags":[]}] +[11:00:26.034] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"08ef2d03a4d53626e43c87013f8607df9d5427ef4ef1e52bbf178704d673f5e4","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759330825,"kind":1,"tags":[],"content":"Just a bunch of dreamers making the world prettier, one smile at a time 🌸","sig":"293c455b54779cc5366e15c0d49e582ebe167e3415ddd3fdeb259a18ed7b63f959db7061165c2b2f311325d8a4534a82587150a85a915a7ac623d303f3965a49"}] +[11:00:26.034] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Just a bunch of dreamers making the world prettier, one smile at a time 🌸","created_at":1759330825,"id":"08ef2d03a4d53626e43c87013f8607df9d5427ef4ef1e52bbf178704d673f5e4","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"293c455b54779cc5366e15c0d49e582ebe167e3415ddd3fdeb259a18ed7b63f959db7061165c2b2f311325d8a4534a82587150a85a915a7ac623d303f3965a49","tags":[]}] +[11:00:27.434] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"It was a great conversation. There aren't many people trying to really seek truth and improve themselves to the best of their ability\n\nReal recognize real \n\nMay God keep us on the right path","created_at":1759330828,"id":"2f6bdcaa28a81e374808b237fa9c536f3a46438c3fc47330c5cd212ad9dbb7a2","kind":1,"pubkey":"5ab57a9e78a0a0d1187afcfc2d4d7d2f82a572b16e517a924f66886ff2d43cb7","sig":"3eb25fa6c44f81f41c22ceb0fad4a2c6f4abe8a93c36a87ffe146caf6a0c8e71db4f49a6c05ab9e150ebc4ac109d243a7938365788fb8a3fe9be43b61f2edcf0","tags":[["e","b03be31dc2d740dacbfa3f57f7a1a4c12f73ab919612c227d72d3f205ad4d3de","","root"],["p","5ab57a9e78a0a0d1187afcfc2d4d7d2f82a572b16e517a924f66886ff2d43cb7"],["p","b77c0ba1999a8c396a359d083ccb2fc5fdc227bf2282100a15ee0e8288d40867"]]}] +[11:00:27.500] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I’m hopeful and firmly believe that Christian / Muslim relations will only grow stronger throughout the rest my lifetime.\n\nToo many Christians are waking up to all of the Jewish Zionist propaganda we’ve been fed by boomers our whole life. The reality is that Muslims love and respect Jesus immensely and there is so much more common ground in our beliefs and how we view the world than most Christians realize.\n\nIf I was a Muslim, I’d be real hesitant about interacting with any “savior complex†Christians. That’s not my goal at all and I don’t expect to be warmly received by every Muslim I encounter. Yet if my life experience is any indicator, most Muslims will typically respond with the kind of disproportionate hospitality that they always do. \n\nLast night was a perfect example. I threw out to Nostr last week that I wanted to learn Arabic and would love some initial guidance to make the journey as effective as possible. My brother nostr:nprofile1qqs94dt6neu2pgx3rpa0elpdf47jlq49w2cku5t6jf8kdzr07t2redcppemhxue69uhkummn9ekx7mp0qyd8wumn8ghj7mn0daexummyv5hxummnw3erztnrdakj78s33tw didn’t know me at all but took two hours between 1:00 AM - 3:00 AM in Morocco to do just that. Told me up front before we met that he didn’t want any payment. Zapped him 10k sats anyways (which is nothing for two hours of 1:1 language tutoring) and immediately he said he did not need that much. Authentic generosity at its finest.\n\nEvery religion has their psychopaths and extremists, including Christians and definitely including Jewish supremacists. It just takes different forms. So when we see poor Gazans throw a homemade bomb at an IOF tank that is unacceptable. But when Jewish and Christian leaders systematically live stream a genocide for two years that is acceptable because of Oct 7? Make it make sense.\n\nLove my Muslim brothers and sisters and sincerely hope this calling is a part of my life for all of my days.\n\n","created_at":1759315097,"id":"b03be31dc2d740dacbfa3f57f7a1a4c12f73ab919612c227d72d3f205ad4d3de","kind":1,"pubkey":"b77c0ba1999a8c396a359d083ccb2fc5fdc227bf2282100a15ee0e8288d40867","sig":"da21f9b98d6bd8a82ead14c0e6bb8708058187177c6d5a27d45e2b62b238b433b68f00c8996cde5b7eac97defbda2b73477cad2f14af0c86f4e50c847337ffbf","tags":[["p","5ab57a9e78a0a0d1187afcfc2d4d7d2f82a572b16e517a924f66886ff2d43cb7","wss://nos.lol/","mention"]]}] +[11:00:30.116] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🎥 Check out this #wildlife video:\n\nhttps://cdn.satellite.earth/a2806989cfeb0836b46c7c8d33eac267f766c5c419be11beb40572239677a7c9.mp4\n📌 Clip: Chunk gotta booger!!! Haha!\n📺 Channel: ChunkTheGroundhog\n","created_at":1759330829,"id":"9315258ab25c82a1e8f3bed30786ab855ca0d739499ac6d9d06adc4c8a944685","kind":1,"pubkey":"65dfefde2efd179f631c4ad5b088cdd9de2b557410368b8d15e2faebf5af725c","sig":"413d78f4be45c8a55647d51e0e817f23a9a0132290701b9055b623ac34be536f719c7790bbdf441df6604cb5c1e78727374f64ce4392dc3618d756f85a732289","tags":[["t","wildlife"]]}] +[11:00:30.951] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Best Value: \n\nLightningPay:\n49,423 sats = $100\n\nOther NZ options:\n48,089 sats - Easy Crypto\n38,830 sats - Swyftx\n29,772 sats - Independent Reserve\n","created_at":1759330801,"id":"313c28ba2ea8612560dfd2568f461ca73e117ac9ce10b14a01981003d4c2b22a","kind":1,"pubkey":"b5974375791fb9946a41c2d13f4893bb23ff9aab23843b86a8a6c87b84379b21","sig":"1038d85a3ad5f0bee12f4beaa7b4cce4867719277d3314869686811dd9cd69cefc70343e3eb049ae31b1125fd916d090f9b1ff12905f2e49ca618b7a580d61eb","tags":[]}] +[11:00:36.568] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"7d8c800f16a877ee31d5a51a622c10342f097afde7116d8543261625be7d9e1b","pubkey":"090970a02a164bdf8731b48e70cadfb906a2a128996e530932c16b93a9c548d3","created_at":1759330836,"kind":1,"tags":[],"content":"Gangs pédocriminels de Rochdale au Royaume-Uni : sept hommes condamnés à des peines allant de 12 à 35 ans de prison pour des viols commis pendant cinq ans sur deux jeunes filles, qu’ils avaient transformées en esclaves sexuelles | https://www.fdesouche.com/2025/10/01/gangs-pedocriminels-de-rochdale-au-royaume-uni-sept-hommes-condamnes-a-des-peines-allant-de-12-a-35-ans-de-prison-pour-des-viols-commis-pendant-cinq-ans-sur-deux-jeunes-filles-quils-avaien/","sig":"19999332a17db79f3627d25ea14eb47303612b5c9fa7b8ded961099bd130a338d24beebc4a2fa3b275115d99fe12f5d59a2be23a1ed318dd3a2977f5268affff"}] +[11:00:37.362] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Get it while it's hot\n\n\nnostr:nevent1qqs93day59pz9k8hw5ux87fzfz9meu744paceqllwguyq69eerackxspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsygpnd8g2wccgjggln30lhxgk6jvecjcmdmq6u52lc7mrrpl7kqs82upsgqqqqqqs50nsc0","created_at":1759330836,"id":"e74fcea9530d89212f97c43776bb54ddefdcefbd7ed1337b06410faf077aa689","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"7ad13864830191f2ac576cc4d8f11b9d1fc98706f73628b07e7e8b54ee348159641cf1c4da0290cf960797456c730477cf1c559e2004d1850c01623572b70c88","tags":[["e","58b7a4a14222d8f7753863f922488bbcf3d5a87b8c83ff72384068b9c8fb8b1a","","mention"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757","","mention"],["q","58b7a4a14222d8f7753863f922488bbcf3d5a87b8c83ff72384068b9c8fb8b1a"],["zap","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757","wss://nwc.primal.net/ayvjleilmx0al7j2pqt24qed1z7a8s","0.9"],["zap","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/","0.1"]]}] +[11:00:49.779] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"9315258ab25c82a1e8f3bed30786ab855ca0d739499ac6d9d06adc4c8a944685","pubkey":"65dfefde2efd179f631c4ad5b088cdd9de2b557410368b8d15e2faebf5af725c","created_at":1759330829,"kind":1,"tags":[["t","wildlife"]],"content":"🎥 Check out this #wildlife video:\n\nhttps://cdn.satellite.earth/a2806989cfeb0836b46c7c8d33eac267f766c5c419be11beb40572239677a7c9.mp4\n📌 Clip: Chunk gotta booger!!! Haha!\n📺 Channel: ChunkTheGroundhog\n","sig":"413d78f4be45c8a55647d51e0e817f23a9a0132290701b9055b623ac34be536f719c7790bbdf441df6604cb5c1e78727374f64ce4392dc3618d756f85a732289"}] +[11:00:59.026] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,246\nBlock Hash: 000000000000000000001ed59a5c72942cc266ada598f4c035f399d146f00da2\nTimestamp: 2025-10-01T15:00:51.000Z\nTransactions: 3,657\nBlock Size: 1.51 MB\nBlock Weight: 3,993,959 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917246","created_at":1759330858,"id":"f9e2ca9acf68d5d58eff25dabfa97d5eeb9da5431e34060136169b8c792216ec","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"e37911536f97c4e2593fd5fbb0388b6c1b91696ffe35a43201a7641988764248cc02e3a6f31eb2efc7fa485710138ed006731a16afd9efde8b568595b06fd2e5","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917246"],["published_at","1759330851"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000001ed59a5c72942cc266ada598f4c035f399d146f00da2"],["new_block","true"],["block_height","917246"],["block_hash","000000000000000000001ed59a5c72942cc266ada598f4c035f399d146f00da2"],["block_time","1759330851"],["tx_count","3657"],["block_size","1579319"],["block_weight","3993959"],["difficulty","142342602928674.9"],["previous_block","00000000000000000000b631397e501fef6fa11dfbe489214a284fe75f03df12"],["mempool_tx_count","2825"],["mempool_size","1348962"],["memory_usage_pct","2.3"]]}] +[11:00:59.073] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Signing in to say Gm 🤖","created_at":1759330843,"id":"fd6912b12607411158838670096cf0ec6f94ad73787a2e0700deda00ed99bfc4","kind":1,"pubkey":"01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c","sig":"4f22024f147030ca6f336abb58579b677b2e87e76544dc66ae1e714b6b790e1de7bcd1a647f705af44f884a964431a54e563869600f3746b4480c1b411ef3e1b","tags":[["e","07ac854211c84dee07d8b66f704c7e3e4238dec316a65532a16f1f8c91196099","","root"],["p","67ada8e344532cbf82f0e702472e24c7896e0e1c96235eacbaaa4b8616052171"]]}] +[11:00:59.755] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"69400f962b23a81a1de5bc76793f81abd103ee80fe83f606c26a2d811306794e","pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","created_at":1759330859,"kind":1,"tags":[["e","19a46da2ba504b26d2797e62baed7dba7444429576283302d015ff34d3bce589","","root"],["e","280882eb576d9dba22683af14fc614753003fe2453dab2351c5e75323d813109","","reply"],["imeta","url https://image.nostr.build/48e0dd18595b8ff26335b23d1194f1aa96523b44ced8f6a2a6481ef925ab3542.jpg","blurhash eQBzFBMyxuM{of?bRjozWBof9FxuRjt7oe00xuRjt7RjD%WBWVjuRj","dim 1284x2778"],["imeta","url https://image.nostr.build/8ab36a6c95d1b3551eadf9c96d8147b97b2db3fbd853811bea6710e6074e21c6.jpg","blurhash ehKT}Tt7xFoKWVtRRkofWVWV_NWXg3bHaerrWBV@oeof_3e-aeWWof","dim 1284x2778"],["r","https://image.nostr.build/48e0dd18595b8ff26335b23d1194f1aa96523b44ced8f6a2a6481ef925ab3542.jpg"],["r","https://image.nostr.build/8ab36a6c95d1b3551eadf9c96d8147b97b2db3fbd853811bea6710e6074e21c6.jpg"]],"content":"y'all need to come get your wives. ☕ï¸\n\nhttps://image.nostr.build/48e0dd18595b8ff26335b23d1194f1aa96523b44ced8f6a2a6481ef925ab3542.jpg\nhttps://image.nostr.build/8ab36a6c95d1b3551eadf9c96d8147b97b2db3fbd853811bea6710e6074e21c6.jpg","sig":"0ce04b678ae136354a7970e44d9e7d934fbffa74bc4c3e73928fe269a92b7e926c615582bf9c1803c39fd0d76e3ca9b81be1b0204a8d8ad00782e765fc6693ca"}] +[11:00:59.822] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"280882eb576d9dba22683af14fc614753003fe2453dab2351c5e75323d813109","pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","created_at":1759330450,"kind":1,"tags":[["e","19a46da2ba504b26d2797e62baed7dba7444429576283302d015ff34d3bce589","","root"],["e","f15bfba3fae41b6550563a4528b17e46880aa77b733b427b8951718d3d6df310","","reply"]],"content":"🙄","sig":"5f17cd1836e6bdb54e2baa1c0b57b7679985fe27a6337c2bfdcfb374d8d34259c5a4497ac3b697bf5efb11582b6be14373b1511b9c94eedba8d484b2834c3bc1"}] +[11:00:59.932] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"y'all need to come get your wives. ☕ï¸\n\nhttps://image.nostr.build/48e0dd18595b8ff26335b23d1194f1aa96523b44ced8f6a2a6481ef925ab3542.jpg\nhttps://image.nostr.build/8ab36a6c95d1b3551eadf9c96d8147b97b2db3fbd853811bea6710e6074e21c6.jpg","created_at":1759330859,"id":"69400f962b23a81a1de5bc76793f81abd103ee80fe83f606c26a2d811306794e","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"0ce04b678ae136354a7970e44d9e7d934fbffa74bc4c3e73928fe269a92b7e926c615582bf9c1803c39fd0d76e3ca9b81be1b0204a8d8ad00782e765fc6693ca","tags":[["e","19a46da2ba504b26d2797e62baed7dba7444429576283302d015ff34d3bce589","","root"],["e","280882eb576d9dba22683af14fc614753003fe2453dab2351c5e75323d813109","","reply"],["imeta","url https://image.nostr.build/48e0dd18595b8ff26335b23d1194f1aa96523b44ced8f6a2a6481ef925ab3542.jpg","blurhash eQBzFBMyxuM{of?bRjozWBof9FxuRjt7oe00xuRjt7RjD%WBWVjuRj","dim 1284x2778"],["imeta","url https://image.nostr.build/8ab36a6c95d1b3551eadf9c96d8147b97b2db3fbd853811bea6710e6074e21c6.jpg","blurhash ehKT}Tt7xFoKWVtRRkofWVWV_NWXg3bHaerrWBV@oeof_3e-aeWWof","dim 1284x2778"],["r","https://image.nostr.build/48e0dd18595b8ff26335b23d1194f1aa96523b44ced8f6a2a6481ef925ab3542.jpg"],["r","https://image.nostr.build/8ab36a6c95d1b3551eadf9c96d8147b97b2db3fbd853811bea6710e6074e21c6.jpg"]]}] +[11:01:00.304] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"6e54296b7781c76201e764b5090d6d415a773773ed8eaf6a9cdb66d62c76518b","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330856,"kind":1,"tags":[],"content":"New OP_RETURN \nAIL:to:USDT(ERC20):0xE9Ff6CDc7B4c8C7acf8A07b5Cf52c91e9b6B286F\nhttps://mempool.space/tx/81607363c58bcd4a206d7ce1cde26d8b932ab09e193542ffa89141311e6c11eb","sig":"23c44c8c7cc6ca3137a4ed82b82bc91400a2d8eb8ff2fa4bec0522e212a5ed2e76c5abf29920bf444395114564f1cfda602b059d192d9bbad6a4fe688095f868"}] +[11:01:03.595] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"~~~~~~~~~~~~~~~~~~~~~\n#Bitcoin BTC/Gold hourly price\n~~~~~~~~~~~~~~~~~~~~~\n1 BTC: 30.30 oz | 24hr: 2.77%\n1 oz Gold: 3,300,330 sats\n\nBitcoin marketcap: 2.3 trillion USD\nGold marketcap: 26.9 trillion USD\nBitcoin Vs Gold marketcap: 8.7%\n\nUpdated: 2025-10-01 | 15:01 UTC","created_at":1759330863,"id":"775c07f04a277c7e4dcc698291fa219f890c737063883e81346dad8a99adf6d4","kind":1,"pubkey":"90fd5d464f8e8c235a33ac1515c9a808a0c8fc07804ef81d650b5a31cd475ff8","sig":"6bdf0ef7d97127fda97565685803a89831abfce04b7da7a20ce2fb9ee969221383f0a7111ad0a7bac7f50daad0cee8c9a3aa6757862b1c8302c72e15ec0da444","tags":[["t","bitcoin"],["t","btcxau"],["t","btcgold"],["t","gold"]]}] +[11:01:04.292] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"814b6f96577e25f104b4f79018cf56958278f799c080640d32d6dda97ed897f4","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330860,"kind":1,"tags":[],"content":"New OP_RETURN \n=:g:cosmos1hre9fph9n4jjt5frd0chf762rx6ck4l2pr2stc:179335500/1/0:-_/t:5/0\nhttps://mempool.space/tx/8083df0caaa7d0979693accff8a5bf6e2d4d86cb8951d4219cfd5c00fcaea34d","sig":"555eb7baabf6dbaafedc5f37b18086c9974d6a628bd3236f724dbfdeabcac289361d809e98bf2b633a240055a0e290c725fb5e5faf7efcec8955d271e28c0cc0"}] +[11:01:06.706] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"We can do better than 50 followers in one day \n\nY’all give this musician a follow ðŸ™ðŸ¾ \nnostr:nevent1qqszy7dk5xdjhvhxlzc9ysh2x65e5l9pv4jwkl4rcrptqw4dxujdsvqzyrf09lgv2kuvjhwnx46psmqmkw8ldl378wz7rq3shnwzgf389r7uvqcyqqqqqqgpp4mhxue69uhkummn9ekx7mqt0v5za","created_at":1759330853,"id":"c0e204304a13dcf85f9359e91a568f768d92576dc93944e2083e5ac61dfb1e30","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"956aa5995bd4354d07a9c350cda52f56707b5ffa583f27b241d383f728c2c8f6488d24ab7e93fcbe77d1cbe67902b9176cf042f4d4b7cd37e743fac7a98fc7d6","tags":[["q","2279b6a19b2bb2e6f8b05242ea36a99a7ca16564eb7ea3c0c2b03aad3724d830","wss://nos.lol","d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6"],["p","d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[11:01:07.278] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"63a49d481bcf4d29dcd97af4bdda88c323cde2cd2ba8def052147ccbf721f9af","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759330867,"kind":1,"tags":[["e","b17a386e072a0f82779de3eae3086851949f63bd57e97eb25ef07556397057a2","wss://nostr-verified.wellorder.net","root"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["r","wss://no.str.cr/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.land/"],["r","wss://nostr.mom/"],["r","wss://nostr.oxtr.dev/"],["r","wss://nostr.semisol.dev/"],["r","wss://purplepag.es/"],["r","wss://relay.damus.io/"],["r","wss://relay.lexingtonbitcoin.org/"],["r","wss://relay.minibits.cash/"],["r","wss://relay.westernbtc.com/"],["r","wss://nostr.wine/"],["r","wss://relay.primal.net/"],["r","wss://relay.bullishbounty.com/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://at.nostrworks.com/"],["r","wss://btc.klendazu.com/"],["r","wss://nostr-verif.slothy.win/"],["r","wss://nostr.einundzwanzig.space/"],["r","wss://lightningrelay.com/"],["r","wss://relay.nostr.band/"],["r","wss://relay.mostro.network/"],["r","wss://knostr.neutrine.com/"]],"content":"How did she know? 🤭 ","sig":"e81a06ab40d66506251909c036f6fdbe1edcbb682f37658f6e7417c51a3cb20bd3029b8cff7b1d94fc175f83baf062794e48af1da07d9c26cdc57ac5342a0743"}] +[11:01:07.278] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"How did she know? 🤭 ","created_at":1759330867,"id":"63a49d481bcf4d29dcd97af4bdda88c323cde2cd2ba8def052147ccbf721f9af","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"e81a06ab40d66506251909c036f6fdbe1edcbb682f37658f6e7417c51a3cb20bd3029b8cff7b1d94fc175f83baf062794e48af1da07d9c26cdc57ac5342a0743","tags":[["e","b17a386e072a0f82779de3eae3086851949f63bd57e97eb25ef07556397057a2","wss://nostr-verified.wellorder.net","root"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["r","wss://no.str.cr/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.land/"],["r","wss://nostr.mom/"],["r","wss://nostr.oxtr.dev/"],["r","wss://nostr.semisol.dev/"],["r","wss://purplepag.es/"],["r","wss://relay.damus.io/"],["r","wss://relay.lexingtonbitcoin.org/"],["r","wss://relay.minibits.cash/"],["r","wss://relay.westernbtc.com/"],["r","wss://nostr.wine/"],["r","wss://relay.primal.net/"],["r","wss://relay.bullishbounty.com/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://at.nostrworks.com/"],["r","wss://btc.klendazu.com/"],["r","wss://nostr-verif.slothy.win/"],["r","wss://nostr.einundzwanzig.space/"],["r","wss://lightningrelay.com/"],["r","wss://relay.nostr.band/"],["r","wss://relay.mostro.network/"],["r","wss://knostr.neutrine.com/"]]}] +[11:01:08.730] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d3360a7ebb9fdedf56109cb69715a925897454a792626645685f35c1b84580c3","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330865,"kind":1,"tags":[],"content":"New OP_RETURN \nfrom:0.037863BNB(BSC):0x3D0B6e1A146b3c0D86d033138418aeC35c67D315\nhttps://mempool.space/tx/a52acc56440f533c194f38e659c893de67c6ad698e5c7d9b68919f384c26855c","sig":"b9f20c03211ed0e453c926836d28fe0d8e6883796ca1961d4b926639d09653569ad368892ee6e75291ecaf338feaaa059268153e9bf2555be8a533aa4ceff676"}] +[11:01:11.557] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"0b627f6873ec931fc8296d855ce0e3de80894cb683c1f36fadbc0554ed1c3e1c","pubkey":"1ae011cb34999af15602a2aa927f32bb92d65f6161ed71abdaa4f50c1257a556","created_at":1759330832,"kind":1,"tags":[],"content":"Block 917245\n\n4 - high priority\n3 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","sig":"e0a4a54a60a584eadb742cce4b4da927cd39bd98a90674a6dd500e00d69bc787e40297f8373d84159aae5a9a0a9e6dc775df33b823d19068cc7325b741ae1126"}] +[11:01:14.695] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2de9430133641ed54b0ced7b9a3cbe5ea7ade29c2d142b9378bfa824e9d35181","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330871,"kind":1,"tags":[],"content":"New OP_RETURN \nfrom:50USDT(ERC20):0x1A466e0e8761858cc18Abe9Fe172F2d4a63a5E4a\nhttps://mempool.space/tx/969e57408d6944a200531232ecd348fde0d55cdcacc8550bcbcc3f4db777b21a","sig":"3edfd99160d81bc61b28ccdf04d2ba465bb8a4f61743d13c3997f1dd5dc301d9c39fbb7988e46ffb858204c044b60f5a557210c5ca89ea13ca26faaf4b01f1c9"}] +[11:01:15.545] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2618e0d9d804bda9fda547b8c22bc34a084a236af4e11d41f033a294680f5311","pubkey":"3ea0ab5334d595182956692ff44fc1e31327d459d12c981236a1d97e2dd6cd4b","created_at":1759330875,"kind":1,"tags":[],"content":"Ark","sig":"bff05d1923102fa8700b593835bb9eb34b6e32e377c3263fa5c9e94bba381df849f4cbd6f4077392ed16234d9071c47e489c6f3aa89cc227176081af5e3383ad"}] +[11:01:18.574] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"a29c3913e94e1de024d334a0c8672f2e5be7d8e3fa0f15bdf58e2bfd30f58f60","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330874,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:157C814463F9B7EAB3FC7FCA5B1F6C899AA2AC70CD0231D9C5B8E723B1E00BE3\nhttps://mempool.space/tx/e703dd97d70433d8a45af7e55f5aac2bd00df0bfd54c2188e3dbd1d2b5ce8b2b","sig":"3b3e5ed2cd9627f22e50767eb1a31d12de0b137421e93fec0275c1bff566a9b67422684daedcc70c26f12831d82cad5abd5503b22a392170807d01a3c85ca094"}] +[11:01:19.783] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"RIP to all the libertarians like @ComicDaveSmith who claimed that Trump was the lesser of two evils. You probably should have never gotten involved in politics in the first place.","created_at":1759330879,"id":"37ea40146cf0a195b79db184763748563cf09e051a525e3b5e6fac42e66b5f6a","kind":1,"pubkey":"07583e5c837b469751bf7dc288061825a6cf19d00298d1e14889fbfce3695cb6","sig":"2a3f431c81fa1c2e6e1832a675b34ef7ec290666f57b04f38a36a770f9d0c2398708178d6d4909c52c7c3c54076afa053efa914c42348f60a7021e7cf111528b","tags":[["alt","A short note: RIP to all the libertarians like @ComicDaveSmith w..."]]}] +[11:01:22.987] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"24461b75bc36454ecad72fc661da1edf8d7ff089e70ee38988268d79152cf462","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330879,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:6218120E1CB3676CBF1A7E0991AFCC57DC840A22084D0876077916D7F4E5FC5A\nhttps://mempool.space/tx/77606d21c14227f2c91d89767532752874b126ab5b43efa52441ccf47954bde3","sig":"13e5abecb6d8d1199531b7c47ff928f15f20705647ecbc98804db7c4a22645612e82d124b249ef60fb645d119ffdd61f43e5d511d49ba1760fbcd2576d951e3a"}] +[11:01:25.425] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Beautiful âœ¨ï¸ ðŸ˜ ðŸ¤© ","created_at":1759330884,"id":"715a64a135c2f26fe5c28e89dff83a167091c7b9b406d3cdf40b2ec18be97a96","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"8b6961eb9b960ffdc5a51c299cf95d63e2b268636d35a0631f3dc33ca743f146ba7ccdcd58b23a6c6e5f8f2e44c14d897d0f0ea2081ed33217ebfae9356e275d","tags":[["alt","A short note: Beautiful âœ¨ï¸ ðŸ˜ ðŸ¤© "],["e","3c3c75196891bbcde54d691bd0d97d2a09e4f18e27684f177bfc59cfa9f123c5","wss://relay.nostr.band/","root","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","wss://relay.primal.net/"]]}] +[11:01:26.545] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2d41a46c7567295345294acb370787587a9fb0b8384c9d5871be338d047943aa","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330883,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:A4D0B1CB5309B16C304091BEF4F0C1651652B6CA87F78F5FBE6A63D1005AF9EA\nhttps://mempool.space/tx/7736df50bad32a3cbf2d93793d944024d635efb032b73780e746c443088d267f","sig":"05a7e513d51709ac57ed1d587ddc49a9810b154a6894abe22e2defc22c13f0589a36a53b8715d5c7dcdc5619356b06736c4ea22ea82656a5136a86e2ea4e9896"}] +[11:01:30.450] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"da2c9f46cf8367d793aa3c3ecad6316a7c9b457df8c4848d886ec6408e954f4c","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330886,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:12183A9991BCD8F545CD8AE6EC0E75E512A1EF596928696713E7C431B9B4DF46\nhttps://mempool.space/tx/947e98c6823430a296f1c77a090af9b47643255d9b26e376a62662d0f277d9a4","sig":"f43f80b1d26f03f52f6cbe66dbce086878f705f2cee6bea0f6630619345b74af687bccd1c4f52ef8c967d6ee30edf742a827c015d1bd6bf40d31b66dd9c43a9f"}] +[11:01:31.438] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"У Ð¼ÐµÐ½Ñ ÐºÐ¾Ð½Ñервативный дурачок Gemini и умный долбоёб ChatGPT прекраÑно друг друга дополнÑÑŽÑ‚, оÑобенно в поиÑке вÑÑких утечек. Первый их вообще не замечает, а второй великолепно находит. Вот только 80% из того что он находит не ÑущеÑтвует в природе, о чём радоÑтно Ñообщает первый. Я проÑто Ð»ÐµÐ½Ð¸Ð²Ð°Ñ Ð¿Ñ€Ð¾Ñлойка между ними 😄","created_at":1759330891,"id":"a9af529343ded276ead07136bf405dbde46d21023f2cead8a3752f83cfc0472e","kind":1,"pubkey":"cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","sig":"b8ce78a5760beb340ebebc9f27828703253977cf98e9b9029df53c70538078469f2de8a7fb2253270604771d523967ac5322d7e893cd9e00e418f2ad7b396d2e","tags":[["alt","A short note: У Ð¼ÐµÐ½Ñ ÐºÐ¾Ð½Ñервативный дурачок Gemini и умный долбо..."],["e","3afac5911406702cc1a13f2f9b404c3e8efabc34c13687a9b25fad8dba1fbc7b","wss://nostr.oxtr.dev/","root","aa28227a1d241f4e0ecfa98819bcacd5ba9f4a635f606b87148a526776d9c85f"],["e","efbe24af1b45b516cc83ace4c46970d1c8762336dd1b96fe72e34c5c219486b9","wss://adre.su/","","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b"],["e","5bb039e2c65b8af2ea2ee1c6e35fa208c050addc30453085604e7f0ef6ac97e6","wss://adre.su/","reply","aa28227a1d241f4e0ecfa98819bcacd5ba9f4a635f606b87148a526776d9c85f"],["p","aa28227a1d241f4e0ecfa98819bcacd5ba9f4a635f606b87148a526776d9c85f","wss://nostr.oxtr.dev/"],["p","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","wss://nostr.wine/"]]}] +[11:01:31.571] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"a9af529343ded276ead07136bf405dbde46d21023f2cead8a3752f83cfc0472e","pubkey":"cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","created_at":1759330891,"kind":1,"tags":[["alt","A short note: У Ð¼ÐµÐ½Ñ ÐºÐ¾Ð½Ñервативный дурачок Gemini и умный долбо..."],["e","3afac5911406702cc1a13f2f9b404c3e8efabc34c13687a9b25fad8dba1fbc7b","wss://nostr.oxtr.dev/","root","aa28227a1d241f4e0ecfa98819bcacd5ba9f4a635f606b87148a526776d9c85f"],["e","efbe24af1b45b516cc83ace4c46970d1c8762336dd1b96fe72e34c5c219486b9","wss://adre.su/","","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b"],["e","5bb039e2c65b8af2ea2ee1c6e35fa208c050addc30453085604e7f0ef6ac97e6","wss://adre.su/","reply","aa28227a1d241f4e0ecfa98819bcacd5ba9f4a635f606b87148a526776d9c85f"],["p","aa28227a1d241f4e0ecfa98819bcacd5ba9f4a635f606b87148a526776d9c85f","wss://nostr.oxtr.dev/"],["p","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","wss://nostr.wine/"]],"content":"У Ð¼ÐµÐ½Ñ ÐºÐ¾Ð½Ñервативный дурачок Gemini и умный долбоёб ChatGPT прекраÑно друг друга дополнÑÑŽÑ‚, оÑобенно в поиÑке вÑÑких утечек. Первый их вообще не замечает, а второй великолепно находит. Вот только 80% из того что он находит не ÑущеÑтвует в природе, о чём радоÑтно Ñообщает первый. Я проÑто Ð»ÐµÐ½Ð¸Ð²Ð°Ñ Ð¿Ñ€Ð¾Ñлойка между ними 😄","sig":"b8ce78a5760beb340ebebc9f27828703253977cf98e9b9029df53c70538078469f2de8a7fb2253270604771d523967ac5322d7e893cd9e00e418f2ad7b396d2e"}] +[11:01:34.490] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"6b8a70a574d805dff96d39c6d065f1b5d6ba4b93a3af0d46cc2d43ac56967a53","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330891,"kind":1,"tags":[],"content":"New OP_RETURN \nXHG:to:USDC(ARB):0x0eF40B5728d83e236546d87e3a843403DCc5088d\nhttps://mempool.space/tx/dc0cf95ae8aae3ae42405744a68253a2cf8a853254c1f54014d6f6c36c333d50","sig":"18f499870dd8e62547d67b7a9e87730bf44aa392cd126860a855ad6a2043a43ad71a0aa56c84f2126b63f04f1855374da2e548f9eb1ebd433fe384da35c6270e"}] +[11:01:37.012] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I've hear good things. I am just attached to amethyst because I am used to it I think. ","created_at":1759330895,"id":"4476c54e238747b09dcb69446c2eb3fc1d0422ab43d3ec6ed116f1203e090e4c","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"833d70db8c5f3bbc52726322ddb3fda1d32f057fefa630c9982e3e5368e4efc7b5b81e38328457d6b55384c04b25909786debc42d9231ced62f0bad69350aa86","tags":[["e","c6eddeccf7476ba783431d81df841dbe88685fb48a3d26b951395a6dfa00b381","","root"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"]]}] +[11:01:37.079] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"This is a test from Yakihonne\n\n(What is Yakihonne anyway? Is it Hawaiian or something?)\n\nI see here there is an option when posting for a \"paid note\", not really sure what that is. \n\nI can't tag @Yakihonne from the @Yakihonne client, but I can on the Amethyst client, what's that about? Maybe something to do with relays or something, who knows? Nostr is a mystery.\n\nYou can search for gifs straight from the note editor window, that's cool.\n\nFile uploader, good\n\nLet's see if I can ctl-v an image like in Nostrudel . . . \n\n https://image.nostr.build/fba8b6e497883621527ada7e3e8bc52f8d1365be44a69ba77661e681b61fb87d.png\n\nYes! I can, very cool.\n\nI don't really know what the \"tools\" menu is.\n\nAll in all, very good for Yakihonne, I like it.","created_at":1759330836,"id":"c6eddeccf7476ba783431d81df841dbe88685fb48a3d26b951395a6dfa00b381","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"9d79cef9c67af59d78f59b619057ee63fdc974b6be7abcd15aa1f0376516efaa0bb68a1375dec247a2fb0eead3324c8538715672bc5e1c6352d17beabf781d40","tags":[["client","Yakihonne","31990:20986fb83e775d96d188ca5c9df10ce6d613e0eb7e5768a0f0b12b37cdac21b3:1700732875747"]]}] +[11:01:37.987] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"c9e5bbbdc718f9e487913f1549b443af7fabc634ee4087f2dfc9c7388a77e44b","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330894,"kind":1,"tags":[],"content":"New OP_RETURN \nOBu:to:USDT(TRON):TEHURGC2kn13jBafuiUrUdfZuFFKxmPj9J\nhttps://mempool.space/tx/e0bce44b8caf1e1c02a55809eeedd8ce5c0c283acb16703ab8e3367dc2f48d53","sig":"8f99708f1a476769a9f1ca4c103256c6d92bc86981aa232eba0a505a994eef523b068c9ced252fb6e677f797040081792eda4b7cadad96aa2f3df100899ffeaa"}] +[11:01:39.632] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Perhaps we can test nostr:nprofile1qqsgthcq5tm2jxz9x4xg6tvlh26qq2actdpztwh2kc86lvjc03gr36spzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtckgrenr for the nostr:nprofile1qqs9xm4uuxvgeza5zut58cd7d9zuzvuyz52jdfycqj5yrzzneszvhxgcnrfhk","created_at":1759330899,"id":"0947aabf4d1551f7b4f198d64a16e90918aa1a0fb3112b8baf383e53834c06b4","kind":1,"pubkey":"bec0c9d3ce4efc0c11165d72b88129bb1ae26465dd84ff905270d45ac4e9cd29","sig":"03e346f7c86b0154c8f5e105cd3556b7c3f2abf29aa454f976de66d0b005731a31302201d3ed8650d0896c61e7ae18b09017bb23c2710b2a6a25d142f563301f","tags":[["e","347b3ea85e35b7ffa70a6687642d1c27dab648aa5cd8c29b5ba93fd5a2eb56b3","","root"],["e","f5572adb2247764788951de3ea50f220d63d9aef99cc55b9135b13f00fee2945"],["e","af6b750402f9d2a76ecdaf2624d1e8fc67495900155d470781a799ddac8421f6","","reply"],["p","fba1bbd8ab57f258673157defd5afc9ceda004c6845f99db3169fe4b61ba7416"],["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca"],["p","bec0c9d3ce4efc0c11165d72b88129bb1ae26465dd84ff905270d45ac4e9cd29"],["p","532d830dffe09c13e75e8b145c825718fc12b0003f61d61e9077721c7fff93cb"],["p","6538925ebfb661f418d8c7d074bee2e8afd778701dd89070c2da936d571e55c3"],["p","536ebce1988c8bb4171743e1be6945c13384151526a49804a8418853cc04cb99","","mention"],["p","85df00a2f6a91845354c8d2d9fbab4002bb85b4225baeab60fafb2587c5038ea","","mention"]]}] +[11:01:41.740] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"18b9936c9368cf3f371686f127a6e9e9665380921f48858d94407ad7a65fa356","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330898,"kind":1,"tags":[],"content":"New OP_RETURN \nnJi:to:USDT(TRON):TTEMcs6r4mf6JSWmEPcve8WcqkADxFPRVE\nhttps://mempool.space/tx/929b9399b2e597f16091fecf477f98959a94065f706d4938dbdcd177bec8175e","sig":"e51c2a6d7702c203680df94056ed49779df5174696801612c5cfa02d47b571eeeabe4a1de39355a29b84ec620682fe27fd16d4fd0b499942f217531c067db1d8"}] +[11:01:45.207] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"7caf1855946bd65e79212ab26014ee7f853fa9b6d12e93c239c4aba2800563ef","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330901,"kind":1,"tags":[],"content":"New OP_RETURN \nIL4:to:USDT(TRON):TGq2JanPeQvZCcZRi7JarCwsJH2BWn6r4a\nhttps://mempool.space/tx/650ee2738cc8f57acf9cde14b4fd48012fae013898d94284f328e732643b718d","sig":"d9ae9ec7d2c0a85e785cb49681ec767e660ba1fd1d3a32a683c3a4160d72ec1b67d54775712407f91a7aece8313bc9c4074a3ae26a6812980cdaa6cd4747c4ad"}] +[11:01:48.472] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2fcfd8ea807eb6b1b4dbaecb04f7f0b1bfd5488efb16e5c7110953182aa2b911","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330905,"kind":1,"tags":[],"content":"New OP_RETURN \ngZh:to:USDT(TRON):TAbRmKJnv658LfoXn78D7UTseTJLvaXHDd\nhttps://mempool.space/tx/42aa0fa8056a6435c92cbb79f88d424a0fc1e49621174e8a092cd6d9dc30be8e","sig":"f3a8920178e4bcf0389d32910cd683139326499c6473b34660eec2a106f092e29ca28ec1cf7fa488f4e34ade43c0ffbc42b658c8908430315ceee8e0253c1aad"}] +[11:01:50.337] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"The Global Sumud Flotilla is getting very close to Gaza https://image.nostr.build/1e586eabc46773ebc17fc55e6fc70148f05f5f46f8fb2c3b9c89ce6228b6a863.jpg","created_at":1759330907,"id":"e0e71439490730eb4a55ab065cd15201b223a87bdf75c3530403668d128ac92b","kind":1,"pubkey":"3a81d391e062ec349382a1cb436ed3717116d7709ac0503c6a62e24cf537e662","sig":"7efac1cb1484e9764b2bd2137d20b9c0b9418b7095e768f178c337aacee6eda0f5c14ee3e4e39dc411dc5334f670d27de5cbf078dba4ce93c47738dda63f5213","tags":[["alt","A short note: The Global Sumud Flotilla is getting very close to..."],["r","https://image.nostr.build/1e586eabc46773ebc17fc55e6fc70148f05f5f46f8fb2c3b9c89ce6228b6a863.jpg"],["imeta","url https://image.nostr.build/1e586eabc46773ebc17fc55e6fc70148f05f5f46f8fb2c3b9c89ce6228b6a863.jpg","x 4b3a17f6540e7216acee5272a0f4eaa6034a4b9a835096bd64914e51979753bc","size 9754","m image/jpeg","dim 306x372","blurhash _TO;DEE3%KM}xuRkxt01D+t6a#ayRkoe%J%1M~t6s,Ips:~Ut6Rkt6RjofofWYbEawWCWFococWFRks,WBRkocWB%1ofRloeaxR+ag%LofRnWCoej[ayWBa{axWERloej[","ox 4b3a17f6540e7216acee5272a0f4eaa6034a4b9a835096bd64914e51979753bc","alt "]]}] +[11:01:52.005] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"de91a22789c6c253b4619140cb146a74854e0d0edeb6005d0347b356f94bf9bb","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330908,"kind":1,"tags":[],"content":"New OP_RETURN \nLA1:to:USDT(BSC):0xc96b4BD84De1d5097515403b5ebd37734afbb1E8\nhttps://mempool.space/tx/73d8e05bc8472959ddc163a59f82eada589d39cb9c05e29321176f36ec69b398","sig":"425042c81898e0fa83ce92d0f52a0307b05e5ae2d0d5fa822f8d79f9626c44f968e88854ad277e784d3d43ac57d8708d869e4111f15536f3342bc6917a75002f"}] +[11:01:53.321] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"gang","created_at":1759330913,"id":"b76aa1b4b6691c2ab44daec8ceb401b0dbd0d999c69ea4584a1af55a105582a7","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"f54f18031ead04432041490e14695940b6c2bc094c155f6c1ab60f0bec80f34150913e3701761c31647e5f83d869732e5629d42dc88bc396bc574163edcc6386","tags":[["e","158c44e4923da7e1ac8ac538d9780d949ebe70bae4a3c826af3f71072f8713b3","","root"],["p","baa09c021f1ee1b1db17e86c1db0122a47ad2a4dcf52b9139be9edb4eda1c403"]]}] +[11:01:53.387] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"got the nicest email this morning from an old friend who, unbeknownst to me, has been going down the bitcoin rabbit hole. haven't talked in years, but he messaged me last week to say that things were finally starting to click.\n\nfurther proof that you can't orange pill people, they can only orange pill themselves ✨ \n\n\n\nhttps://blossom.primal.net/f9aa8cbcbc420d50063a4890303ecde2aa438b6d56dd5ae633a7e368dd9f0a04.jpg","created_at":1759322980,"id":"158c44e4923da7e1ac8ac538d9780d949ebe70bae4a3c826af3f71072f8713b3","kind":1,"pubkey":"baa09c021f1ee1b1db17e86c1db0122a47ad2a4dcf52b9139be9edb4eda1c403","sig":"13e426e5dd95026e4d56837e67f092e288a4afbf150e3af30206373f37e7e51c50cff1b051dd5bbea869388625d517ed0fb71e8d40a9dc2a4df2c48fc81e2e71","tags":[["imeta","url https://blossom.primal.net/f9aa8cbcbc420d50063a4890303ecde2aa438b6d56dd5ae633a7e368dd9f0a04.jpg","m image/jpeg","ox f9aa8cbcbc420d50063a4890303ecde2aa438b6d56dd5ae633a7e368dd9f0a04","dim 806x916"]]}] +[11:01:55.495] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d05be99f6519367d3bdf4373fd7b72da91d4845442c5660365a96de226208575","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330912,"kind":1,"tags":[],"content":"New OP_RETURN \nyxQ:to:USDT(TRON):TAM6aNwL74W7wnC71iWCzgEgF95WC3tT3z\nhttps://mempool.space/tx/ee20f273d098e3f42d001726a3b27afe330cbd5b78aa595084a37ed7bcd5c7b2","sig":"1a4049319331bead3831b049f7bbd8faa824979d8991658526747155f7af193ad74ca04749b3e91bb36c1e700b3b27928109aaa402f66f7f7f449c7bd6a41b20"}] +[11:01:58.984] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d69d5eb564c74a80c72502219faa6b31716047e8c612d32200183fd2930d0488","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330915,"kind":1,"tags":[],"content":"New OP_RETURN \n6PG:to:USDT(TRON):TJR7V8PDPwPvWPd5RkWhz8DRBBqsiYSqwb\nhttps://mempool.space/tx/b4f9fcadf2a7b8ac67c7ffb0d31053dcea750f92a9c11687080b157fb18eb9fe","sig":"3eb024f2940acb72a38dbaab06d1e052d27f7aeed81de3165b0b06c3663915c6912a90be01eb20ad51017f27af36564366c8e37be148f9368e5ea931f59c9eae"}] +[11:02:02.494] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"~~~~~~~~~~~~~~~~~~~~~\n#Bitcoin BTC/SEK hourly price\n~~~~~~~~~~~~~~~~~~~~~\n1 BTC: 1,099,004 sek | 24hr: 2.97%\n1 SEK: 90 sats\nMarket cap: 21,901,316,016,554 sek\n\nUpdated: 2025-10-01 | 17:01 CEST","created_at":1759330922,"id":"64d051a141db04d50050b12c698ee4ead7da11d782a080b8bc93907effb982c9","kind":1,"pubkey":"80b2b76a3a1fc4332df2129d9a77b32b027fbb226cca9a96f73fc9bea972c5a8","sig":"b9801c0f30a30c7eb5e6924f31430b72e3efefd9e45e18a75eb3fd019a3e05ddb10a4744019eb8a9b58049e31d87bc3f8476385c4f5597a5f49d77d2d8d35617","tags":[["t","bitcoin"],["t","btcsek"],["t","sweden"]]}] +[11:02:04.382] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"db622656aceb83d14ffbfb411d24061f49cf8cb8e5713c0b4afd4f3865533c4a","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330920,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:B00A9F30F3FA32F412B38199D40DDF6076E59D3946EE4D0CC880BF752697EB37\nhttps://mempool.space/tx/b786d19be6481ec0765df7f4c1153b7e6012b0f329a331b2e0ac2a0ae350c30e","sig":"a891a41e33c6b98698db35eab3dd2e98929d2c138695ca8d3658c4f89ecabf91aef366d24992db76e698d6b452fe90ae20993f4558531d652601246cf92ba44e"}] +[11:02:04.448] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"f72f12930f67691538ebd95a2ac3d0924a1181cc234cadd2792614caccaa784a","pubkey":"4506e04e4b7079ce07e38e9875678a81ad33a456c696d708ef8e9a2d8c16ba04","created_at":1759330924,"kind":1,"tags":[["e","a7e14068ab6644c91cb990578ec2e8629aadb625d8134161bb4df7cc24ddb3aa","wss://relay.damus.io/","root","4506e04e4b7079ce07e38e9875678a81ad33a456c696d708ef8e9a2d8c16ba04"],["e","1b8e3239c4140f628bef42b7a36e7d830f3934322c94c4bbc8657c9900539954","wss://pyramid.fiatjaf.com/","reply"],["p","eb61c681c792331a253441d98f0346071011763836fa0de928b578c7cdb47a37","","mention"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","","mention"]],"content":"We added a few more relays. Let’s see if it propagates. Thanks! ","sig":"6f88499f0f3d08a9319e06bd299d7464719dbe9b5d753f372fecd37b4abfb7489bd756337ba3cb32ec11cfdacf0a135b586bf0245393d7096a99d9322aa18c71"}] +[11:02:04.467] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"We added a few more relays. Let’s see if it propagates. Thanks! ","created_at":1759330924,"id":"f72f12930f67691538ebd95a2ac3d0924a1181cc234cadd2792614caccaa784a","kind":1,"pubkey":"4506e04e4b7079ce07e38e9875678a81ad33a456c696d708ef8e9a2d8c16ba04","sig":"6f88499f0f3d08a9319e06bd299d7464719dbe9b5d753f372fecd37b4abfb7489bd756337ba3cb32ec11cfdacf0a135b586bf0245393d7096a99d9322aa18c71","tags":[["e","a7e14068ab6644c91cb990578ec2e8629aadb625d8134161bb4df7cc24ddb3aa","wss://relay.damus.io/","root","4506e04e4b7079ce07e38e9875678a81ad33a456c696d708ef8e9a2d8c16ba04"],["e","1b8e3239c4140f628bef42b7a36e7d830f3934322c94c4bbc8657c9900539954","wss://pyramid.fiatjaf.com/","reply"],["p","eb61c681c792331a253441d98f0346071011763836fa0de928b578c7cdb47a37","","mention"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","","mention"]]}] +[11:02:08.003] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"56d62432336ff021f3f2cbc2b73e99a4dfe5140f98fd60b17a71cede390fafcd","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330924,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:23BA6FB5D85429C1B2C4D72203B9C4A1C795DEEDB952900E653F33AC6528C56F\nhttps://mempool.space/tx/86a14df0d23337317d667a8197abf2444a56b0fa1dcf6a6e3e03cc8b25c16408","sig":"d3e30f2706a1f3b07b3033535ea6cb212d8c2edbcfe25e04f7e129de7dd2144ae47b3f66258610af3add709f24a5761f1aa704494b10c5ffc9af326183276ae8"}] +[11:02:11.392] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"bb0e25fce8c276d21bed3e5c8c507661b1682917dea06cbd372af12c4735e21a","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330928,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:8BC875B9396E8915A219EBC99FE95F2666F255FA7BB90A66E7F80CE81BEF288A\nhttps://mempool.space/tx/56ccd358047863c9e0142239b4724b6d61d67caecc17a14cd30ee14689d7f67e","sig":"107ed6a6e1f6ae2ab0f5cd6d838761b33491cff737a4d899edb72bdd0314b3f948b84db7f6a60a3f95ee08c1bbbedc57d037286da9303cd63ece20968d6ff9a0"}] +[11:02:15.955] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"92b7b5d0573dd2b95c1f9363ecd8a0b7ff960f56ebfaf03e4ac039afef06f17f","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330931,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:2587246DC4148C7F18B97690ACA8FA67948C6560DFCFF0E3F8D390B6A2667BF7\nhttps://mempool.space/tx/18c5e489117fae1ee4922a8ecefa43dd3ec7dd1bb1216fdb103faf802f0c98fb","sig":"22dee13b43431da377028f416748d7884f807b2f4c093522ccbf09313acca1e896abfcc2126270369682ece63d2bf7131077c94a42b902a857a63026130a68ef"}] +[11:02:17.734] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Really, this isn't a post from 2009?","created_at":1759330936,"id":"cf39366405df8b918f23d694900ab459ba8c8edf518fb832a73e50b2f244539e","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"d0fdc6da3f21e90b753753f74a9755cf8ea2e74bc76d48eb3a32ff8b235defcf6512f86e4a91a27896ef47d484b5d61a2a57dedc0c78ec907fd402fd39211bda","tags":[["e","99cb270e7c253be479977396f63b568993280f7e68f929848da73bc87628591b","","root"],["p","e83b66a8ed2d37c07d1abea6e1b000a15549c69508fa4c5875556d52b0526c2b"]]}] +[11:02:17.801] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"End of an era, AOL dialup ended yesterday 🥺 \n\nhttps://help.aol.com/articles/dial-up-internet-to-be-discontinued\n","created_at":1759330794,"id":"99cb270e7c253be479977396f63b568993280f7e68f929848da73bc87628591b","kind":1,"pubkey":"e83b66a8ed2d37c07d1abea6e1b000a15549c69508fa4c5875556d52b0526c2b","sig":"86fbfa6c190e4ee5cf059915e8ee4ae56167c4d3ff7f4dfaa93aeb01b3efcad634a62cb6c2e72691b1bb837ea23680f508f6c43c5dbe57db7c7351bd620579b0","tags":[["r","wss://filter.nostr.wine/"],["r","wss://hist.nostr.land/"],["r","wss://nortis.nostr1.com/"],["r","wss://relay.damus.io/"]]}] +[11:02:19.481] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"47a203a3ddb09198294d5a6c6e2d4aeac28f69c37d7723e8e5770bf7949ea701","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330936,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:570D9A09B2F005DB5B6897081B342D73AD31828FFE8E37F09A87D1AC8C08901D\nhttps://mempool.space/tx/c06531cef9b11eeec97dbf0ecd799ca479828d35ccfee8abaee1f14e4cbc0053","sig":"fea6e038ff2f6084458271a12030f7f7a3ebe48bfc972c368542d035a748f71a83051af7acf6ce67e72dbb66deed915ff04a24ddd592af2083c31829b7993c16"}] +[11:02:22.954] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"c6f7b6a95564f5c1a5aea2e87e7965b39127815caba51bf309cf1675fc5ab287","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330939,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:4ED0CDAC1658C6EBF222AD4D74133F3AAD570A61CB53AE611C326CD7A19D80B2\nhttps://mempool.space/tx/d2a91ee496deea5d2dc88560f0effde107f4043f0f7baacfc6dec21417b87b4b","sig":"e201ceaa1485dbd4fd9ec760b655babd1900a8333a30836277ae58f7ad03cc01d300fa7760c389559a3e13cee3e834141b011bb4192548ab05d6b0f302109eec"}] +[11:02:27.580] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Freedom go up ✌ï¸\nnostr:nevent1qqsde476zenj24fg46klp2cexaq7a479yc0fcrk4dn4u7mu823c99cqpz4mhxue69uhkummnw3ezummcw3ezuer9wchsygzccaq65ccv9k3454480sws2wqepz73q5z0m5kckslhyhh6d533jcpsgqqqqqqsdcqgry","created_at":1759330940,"id":"fa75a435bbca7e9983e5d73c5a7951311c17dd2e875cff39f672907fe66dd1ff","kind":1,"pubkey":"fa731a9006ccce46aac574ea7ed62a42cc04e743f960d5cd41d1a352c32840b3","sig":"0b5e61dd60afeeb6fffe2628b8036a3a75a491fc8225845869db2bece4d0f521cb89a0480e94edf17d70ea3ed3611f96987cb70ca72ac498ce1c70bc4e6fa826","tags":[["alt","A short note: Freedom go up ✌ï¸\nnostr:nevent1qqsde476zenj24fg46kl..."],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","wss://nostr.fmt.wiz.biz/"],["q","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://nostr.oxtr.dev/","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196"],["zap","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","wss://nostr.fmt.wiz.biz/","0.9"],["zap","fa731a9006ccce46aac574ea7ed62a42cc04e743f960d5cd41d1a352c32840b3","wss://relai.snort.social/","0.1"]]}] +[11:02:34.076] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"bea10e582cad23feda718dae9986033b8fcd73c14381708f62da6d3837881ba7","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330950,"kind":1,"tags":[],"content":"New OP_RETURN \nto:LTC:ltc1q0y5ut2sxp343s09dmtwzwvm8qg406s9skltwlr\nhttps://mempool.space/tx/cbcc088d7f49acbdec4c62e563a89e4b78698697e931ec7071693462c0868dc8","sig":"ad8fecfde748c79778ca14eb23c41222e64735af09a236362ad0b25bab98cbb3cd13a0579724d45af575eaaff4d04698b780da8a29be90ebe844cb0e0aeea0f1"}] +[11:02:37.650] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"81fefd5f260d5be754ff824d5bc0efc47e1112907d2f939c7021dc646d952cdc","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330954,"kind":1,"tags":[],"content":"New OP_RETURN \n0xb2f1061069ea72e178d7ed77eebd99116ee9c72f67c1993b7622a94f27c2c9a4\nhttps://mempool.space/tx/652f39ebd67a8a13ffb6cf9660874198f5fff55f22b3f13e4e3bb448c31bfa4f","sig":"4201a6fe3629632b65b3ef2395b33555559e4c2e69dbbb8a681c7953232e7e267c0f29f2926bd25207f52dac907816dde3b5ac41e3557c62be04ffacd417e074"}] +[11:02:37.773] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"The government doesn't take the taxes out of your paycheck. Your employer does. Then they give that money to the government. Because if they don't, the government will take their license to operate.\n\n\nIt's an important distinction.","created_at":1759330957,"id":"deea425d8bb4ad370bde22a851760bb0ab3e8ce6ac9d43d85303d9e32501f330","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"121d41a6bf7bd9e3dc02d6fa39f140d62597e418df799a5eb9e555d4bf5faf9c88ff8c0c79a5d19f5119762a8bc73fcca52d15c2c285b0ba1a3aaf0d9d8743ec","tags":[["e","629ef8b02028700f70b7dc4d6d7269de12627af05d8acc5c1e11d057a6804075","","root"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"]]}] +[11:02:37.950] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"\nhttps://blossom.primal.net/d6e478f3dce80bd4b9f015824019902e309ebbe12e3889e66e7deffaa704f7d3.jpg","created_at":1759323675,"id":"629ef8b02028700f70b7dc4d6d7269de12627af05d8acc5c1e11d057a6804075","kind":1,"pubkey":"f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","sig":"b949ca70943bdb44e14b7c13267b769f5662397f18d88812936c628d8e96abe0aecff589e20d33357fee64b4bb4c9f6f4a188421cd9cc69090d10137097d808a","tags":[]}] +[11:02:41.384] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"a5e903609a7a28f5eee00163c5c77979ae38167c631941c527b2387636914fae","pubkey":"0095c837e8ed370de6505c2c631551af08c110853b519055d0cdf3d981da5ac3","created_at":1759330960,"kind":1,"tags":[],"content":"✅ coldcard\n\n✅ blockclock\n\n✅ lnd\n\n✅ bitcoin_core\n\n✅ sparrow\n\n✅ green_qt\n\n✅ wasabi\n\n✅ joinmarket\n\n✅ electrum\n\n✅ core_ln\n\n✅ specter\n\n✅ seedsigner\n\n✅ liana\n\n✅ bitcoin_knots\n\nTo see full results visit binarywatch.org\n\n♥@coinkite","sig":"5fa2ea98386ccacea74703035d94d520580e5f8c8e7bdb9d4006f3560846203bbf39b90b477337c2073584ad5e8258fa4b4e3d2eb090435499dca823dce14def"}] +[11:02:41.823] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"thats 100% @Duhlaurien\n","created_at":1759330961,"id":"6cb1a7fef16905c77313cc3f666da5aea075c1ea03a824cea054b04f86ca8c10","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"fa812a98d3a08badb71daac355c7aa0087ff3ab5a2f291a4194206fd31443b13a45e83b7adfd305bce29552a0f731fd98a8b94853631b19107a4782dc513b0ab","tags":[["e","78c49590b8f5b233479e28f3bac4eeaa8e5ca6e6d624f1c6cd07a55ffad82ebc","wss://relay.damus.io/","root","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624"],["e","78c49590b8f5b233479e28f3bac4eeaa8e5ca6e6d624f1c6cd07a55ffad82ebc","wss://relay.damus.io/","reply","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624"],["p","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:02:45.289] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":" \nhttps://images2.imgbox.com/ad/f7/qj2uqGqN_o.jpg \n#FitnessAndLifestyleGoals","created_at":1759330965,"id":"669006ff24ed9264430f67217410a522f59095b978a5d1f04dd5757f6c4f2a0c","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"04d1bcb697c9a65aae77004f9f00dceb4bb1a54a1139a5f2ea682cee8a7324563ebd551a86f361d0e3aa910b6dc42b8f538978b2918670423b7155ca4f3cb0ac","tags":[]}] +[11:02:45.345] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"669006ff24ed9264430f67217410a522f59095b978a5d1f04dd5757f6c4f2a0c","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759330965,"kind":1,"tags":[],"content":" \nhttps://images2.imgbox.com/ad/f7/qj2uqGqN_o.jpg \n#FitnessAndLifestyleGoals","sig":"04d1bcb697c9a65aae77004f9f00dceb4bb1a54a1139a5f2ea682cee8a7324563ebd551a86f361d0e3aa910b6dc42b8f538978b2918670423b7155ca4f3cb0ac"}] +[11:02:45.705] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Israel bankrolling influencers to boost image in US – media\n\nFrom RT\n\nPrime Minister Benjamin Netanyahu has emphasized the role of social media creators in maintaining the country’s support base in America Israel has been paying influencers for social media posts to improve its image in the US, according to online magazine Responsible Statecraft. Israeli Prime Minister Benjamin Netanyahu has recently stressed the role of content creators […]\n\nOct 1st 2025 10:34am EDT\n\nSource Link: https://www.rt.com/news/625705-israel-us-influence-campaign/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\n\nInternet Archive Link: https://web.archive.org/web/20251001144451/https://www.rt.com/news/625705-israel-us-influence-campaign/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1043684","created_at":1759330905,"id":"300437fc8dd2d29953febc537fd0e379411a8d1d0255aa91d4e16f58848c18c0","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"eb076674f309f40caf24d076dd92e37d2a028eac28c0d13400389d1b120d73c2d951c482a33d8c5cc1ae8f909e73d5b0e90bdec0804739ae4c1d9d63aa4cd9d3","tags":[]}] +[11:02:46.176] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"cc87d0981f6ce402db0d538c6686918340dee4c0d7e57285ef837ab622a19696","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330962,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/0e6b36ca61fe8c2c70803a33b9e8c5652d4ffbfe97d5a37672d4897ce007f4f5","sig":"f03d6049a5c2cf8bd47fbbb84b9b3a6136af4612c09541b107d46653a69e795d4c8e5f75aa6e74eb0beaece088ae7847d8b4c7a7688917c988c9aadc168ff2b1"}] +[11:02:49.970] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"21072e78f23ec72633bb8dcfdf5d7e659ea20a7bcad06a4b596be7e7534108b9","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330966,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0x64CD4C1A8cf4eb498633B9C4866972ef276f5C99:214322:-_/t1:0/70\nhttps://mempool.space/tx/2e6fbbcb3ce35a55cbbcaf2efda013cd2cabbcc31c4042599dc33382b9fb7c1b","sig":"c9fcfb137beea3edef06f5642e9c7d5cd6712fe732cdba72116fef2ad09f4c6579fe6fcaffb816ae63ce67709d2761fb6bac98caf9cccc461d72cc5025a2e88a"}] +[11:02:50.628] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Hey, we all got our thing. ","created_at":1759330969,"id":"abc93adf5e539e4af0d2df665cec96003784a546f4c44a151708073beea5772c","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"0c73eb34ec78020cb73f8285c32ac1abd7913e75ac462defb949109c613e8e7219a07fa870723f5abf66e1fd0f1e91f49b1058ec02c42c3c1a03f628d081d0fb","tags":[["e","c39f8b9f2e94673415ab2eccc6d6a21e73b15e44ddbadabb5045519f1a7ebe4f","","root"],["p","1c6cb22996baabe921bcd45c8b6213b2dab096f88e4ba5678d43d195a1868551"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c"]]}] +[11:02:50.695] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Lord please forgive me for schadenfreude. nostr:nprofile1qqspcm9j9xtt42lfyx7dghytvgfm9k4sjmuguja9v7x585v45xrg25gppemhxue69uhkummn9ekx7mp0qywhwumn8ghj7mn0wd68ytnzd96xxmmfdejhytnnda3kjctv9unjm28h just keeps posting so much quality porn today... \n\n","created_at":1759330692,"id":"c39f8b9f2e94673415ab2eccc6d6a21e73b15e44ddbadabb5045519f1a7ebe4f","kind":1,"pubkey":"fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","sig":"29236ac5fd9423f78819852dd9aa1a00135ab3253356a36ed43c537c62ce856eb1d4ccd25d709029c7a8aaeae6f3fda74e98e769899aca6bdef6fbb755d348db","tags":[["p","1c6cb22996baabe921bcd45c8b6213b2dab096f88e4ba5678d43d195a1868551","wss://nos.lol/","mention"]]}] +[11:02:53.909] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"14b0b958c25d769375ba0515eaeeff35848b20b3e1e0da101d080842d07e88d3","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330970,"kind":1,"tags":[],"content":"New OP_RETURN \nbPS:to:USDT(TRON):TWCWB6FunvixWLqmFwuHWeScAYnJ9McBM7\nhttps://mempool.space/tx/6aad17f55e70a36ba20ada44945cccc016f11f7471c39f110fcf75a1896c8a07","sig":"0b5cec9d30e5c95d076e871e03c4d18b476c4e2c1ff0fab30f401e024f5d8a34da6e1adf4e3250c502cb82d7ff304564d8247862713d2601cde9e9f9d0e9e096"}] +[11:02:57.388] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"e79191c88517a8a336543b48fae3b2cbab6b260b57076c3d8e8beff023741c65","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330974,"kind":1,"tags":[],"content":"New OP_RETURN \nqps:to:LTC:ltc1qt57squ0uvpd7x55d0tc4x6l8p6q2dsy2shrmy4\nhttps://mempool.space/tx/473e5e759d0c1853cf8419ed166a98bc9245f0e4ad4870669aa222ebeb82db1b","sig":"cb7eadef529887c7f9eab2c234ec70f9174f53efcf22f235d05ad72bfa8d4f2d22bd0ae334b139398f2eac59633499188a8240815cfd38437842a43f1e9f047a"}] +[11:03:00.418] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"fa75a435bbca7e9983e5d73c5a7951311c17dd2e875cff39f672907fe66dd1ff","pubkey":"fa731a9006ccce46aac574ea7ed62a42cc04e743f960d5cd41d1a352c32840b3","created_at":1759330940,"kind":1,"tags":[["alt","A short note: Freedom go up ✌ï¸\nnostr:nevent1qqsde476zenj24fg46kl..."],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","wss://nostr.fmt.wiz.biz/"],["q","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://nostr.oxtr.dev/","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196"],["zap","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","wss://nostr.fmt.wiz.biz/","0.9"],["zap","fa731a9006ccce46aac574ea7ed62a42cc04e743f960d5cd41d1a352c32840b3","wss://relai.snort.social/","0.1"]],"content":"Freedom go up ✌ï¸\nnostr:nevent1qqsde476zenj24fg46klp2cexaq7a479yc0fcrk4dn4u7mu823c99cqpz4mhxue69uhkummnw3ezummcw3ezuer9wchsygzccaq65ccv9k3454480sws2wqepz73q5z0m5kckslhyhh6d533jcpsgqqqqqqsdcqgry","sig":"0b5e61dd60afeeb6fffe2628b8036a3a75a491fc8225845869db2bece4d0f521cb89a0480e94edf17d70ea3ed3611f96987cb70ca72ac498ce1c70bc4e6fa826"}] +[11:03:03.775] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"347a29dcd3c3c7b88618559df5c239425bf6d17427112b4c0a523836c51c33f9","pubkey":"d4cf3423b64bfeb540b3e0ce22946191c033d38b5d32b37a8f0f3a4cf514cd23","created_at":1759330982,"kind":1,"tags":[["t","Bitcoin"],["t","studybitcoin"]],"content":"In the latest Bitcoin block update, block number 917247 was mined with a fee rate of ₹41, and Bitcoin's price reached approximately $117,322.90. The market showed a dominance of 56.83% for Bitcoin, amidst active discussion about its future potential and existing challenges. #Bitcoin #studybitcoin ","sig":"ded6fbe448963d1eb56702e2be5a45714f02c3d693a56205be52a9fe81d7b506d98c0faee220d46252baa7f3871503c0f96729d7c6ff0b9abd68503921822979"}] +[11:03:03.841] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2603327fc2b33fb02ab4bb82c1712b6ba4339ac7e58b9a0ebddc53a0b6fa2c4e","pubkey":"d4cf3423b64bfeb540b3e0ce22946191c033d38b5d32b37a8f0f3a4cf514cd23","created_at":1759330982,"kind":1,"tags":[["e","e124054fc1f4abd5897689481dfddc4d27133f97b51c894f6ece301ec7c29c29","","reply","e2b8ba3e6f7d63ab44559f25a6863d1d9ba1a2cd751391a69e261ad027400d81"]],"content":"Wow, that’s awesome! 🚀 Bitcoin is really taking off! Loving the energy in the crypto space right now. Can’t wait to see where it goes next! 🙌💖 #Bitcoin #Crypto","sig":"68aefb02968cc7bcc721332a09ff7c04d04b68935b8ec598211b8946e1cbaa35c65fed38b6b08bdc785179b6bd598f8c46e8bf0f4cade0ff96dd452d2584a36d"}] +[11:03:03.969] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"In the latest Bitcoin block update, block number 917247 was mined with a fee rate of ₹41, and Bitcoin's price reached approximately $117,322.90. The market showed a dominance of 56.83% for Bitcoin, amidst active discussion about its future potential and existing challenges. #Bitcoin #studybitcoin ","created_at":1759330982,"id":"347a29dcd3c3c7b88618559df5c239425bf6d17427112b4c0a523836c51c33f9","kind":1,"pubkey":"d4cf3423b64bfeb540b3e0ce22946191c033d38b5d32b37a8f0f3a4cf514cd23","sig":"ded6fbe448963d1eb56702e2be5a45714f02c3d693a56205be52a9fe81d7b506d98c0faee220d46252baa7f3871503c0f96729d7c6ff0b9abd68503921822979","tags":[["t","Bitcoin"],["t","studybitcoin"]]}] +[11:03:04.145] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Wow, that’s awesome! 🚀 Bitcoin is really taking off! Loving the energy in the crypto space right now. Can’t wait to see where it goes next! 🙌💖 #Bitcoin #Crypto","created_at":1759330982,"id":"2603327fc2b33fb02ab4bb82c1712b6ba4339ac7e58b9a0ebddc53a0b6fa2c4e","kind":1,"pubkey":"d4cf3423b64bfeb540b3e0ce22946191c033d38b5d32b37a8f0f3a4cf514cd23","sig":"68aefb02968cc7bcc721332a09ff7c04d04b68935b8ec598211b8946e1cbaa35c65fed38b6b08bdc785179b6bd598f8c46e8bf0f4cade0ff96dd452d2584a36d","tags":[["e","e124054fc1f4abd5897689481dfddc4d27133f97b51c894f6ece301ec7c29c29","","reply","e2b8ba3e6f7d63ab44559f25a6863d1d9ba1a2cd751391a69e261ad027400d81"]]}] +[11:03:05.155] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"ac825d93ede1d5a678e5a53279ea318910d85b69a8af6a351c9d28a97e2d130a","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330981,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0x70D0598A0F60F2E4aD0a760f3a958c166730cf68:1111094/1/0:-_/bgw:20/30\nhttps://mempool.space/tx/d61fae725c3cb7748e5db44edd62c861a5edcd4ad4fe4876abe19a20c31f7a3b","sig":"e97d7cfac8130d2c3ad249ee1831ec186ee220fcd5c3dbe37efd22dd4d231677f47f73a6c5a070a1cb71901911beb2d235682a422788ef20241fcc722bc4c67a"}] +[11:03:08.730] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"391fd9bfa4c612e3fb941c08d62763dc7de44c8c88d7b64e627b277c8a542d6f","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330985,"kind":1,"tags":[],"content":"New OP_RETURN \n=:ETH.USDT:0xD723356Db6392d63A0C6939FcfE3F6d1D0d2Fc33:128814e4/1/0:-_/bgw:20/30\nhttps://mempool.space/tx/cfc871ced8f30012f01c83996fa4824085d4dea5a15c0df074224d0d034f8341","sig":"1729bcd7af1fdb5d6a2d5b2f22673a696b4d77703217266f7d571f6ad7530796567e285ef043c20a197e7287dcd525fd3e354d55147f494f51e8d229c607f5f9"}] +[11:03:15.598] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"b11ee1fe7c1501f0b136fb6f8ff551f0cc09635dae8d495a63326bdb4ef145ae","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330992,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0x313077d4BA5DdBc62a2Ec794A98B76f1550F90c8:597637/1/0:-_/bgw:20/30\nhttps://mempool.space/tx/08af52ad71034c5ba4ea1e1a6602c70ff5dddc5c3c7de275e9099fe7e4d578d7","sig":"e6f22e71588e2110092fde4bd44dca626863aa2ca796fa49998891c0b08879e68fbd7f351d6c23e16709d78f5d0b5d410408137cec0ab4724d7c18dfce5a0d29"}] +[11:03:19.831] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"be0f6d254c747bd7d738bc1dc2d8b0205684ee9e47bec51b1cde54ac72896ffd","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759330996,"kind":1,"tags":[],"content":"New OP_RETURN \nto:USDT(TRON):TEA3y7YBFfGamcV7xWT8ZaR2ktaXeuiUbq\nhttps://mempool.space/tx/b82283693a7d9cc313037afd264352ee160e5c1c4e5b31997902f638fba0689d","sig":"148fe9291ebbcc5c78f0ebd5fd9157185132a1eb14779c0d361d57204e91d3ef625def6cd6209e0bce8ed7faf854b9ec09e68261d5f0b42926ca60a8308b16af"}] +[11:03:22.420] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"dcea6d20fcb88befdae98e15abef109ebb7e798fc4f92184f50e226073c81584","pubkey":"08b328b57a07e86108d7afd05ca1445ac6aa0a095d6154cb2f4347bdeabbdb99","created_at":1759331002,"kind":1,"tags":[["e","508a386901f1b82067bc2a1c5a383dc6830315cdd79c1c8e01ae471c71724a4f","","root"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","","mention"],["t","nostr"]],"content":"#nostr only 💜","sig":"ae76a2bece875aeb8efe6f91e2d3e84f537adee72833c6d4e0d0b8d4e69d15d9383a413c91801835b956a99d1693c4ba9a1d3fc3254e8382cbe09362ae632236"}] +[11:03:22.531] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#nostr only 💜","created_at":1759331002,"id":"dcea6d20fcb88befdae98e15abef109ebb7e798fc4f92184f50e226073c81584","kind":1,"pubkey":"08b328b57a07e86108d7afd05ca1445ac6aa0a095d6154cb2f4347bdeabbdb99","sig":"ae76a2bece875aeb8efe6f91e2d3e84f537adee72833c6d4e0d0b8d4e69d15d9383a413c91801835b956a99d1693c4ba9a1d3fc3254e8382cbe09362ae632236","tags":[["e","508a386901f1b82067bc2a1c5a383dc6830315cdd79c1c8e01ae471c71724a4f","","root"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","","mention"],["t","nostr"]]}] +[11:03:24.242] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"âš¡ï¸ðŸ”Ž NEW - Immediately after TikTok's sale to Larry Ellison, a coordinated pressure campaign against X was launched on the internet. \nhttps://blossom.primal.net/54cb3de06a05da3ce1aa508db646f7de6b4f8ea0745e86ab3bf1954ea4bba299.jpg","created_at":1759320779,"id":"508a386901f1b82067bc2a1c5a383dc6830315cdd79c1c8e01ae471c71724a4f","kind":1,"pubkey":"4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","sig":"45888991d3ce623a7c0c875bdc57696700d0fc8785c89b8b0bcf690cb0476b9c2e6b19d4c8e380d6f9e087b9776468da18615bc2942c08a08ed7573ac71a6439","tags":[]}] +[11:03:25.911] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"b62b32b9c6ae0a23e00a67e0c5384982efbeec0ede461aea18f7b71f5a032b69","pubkey":"970a45b02441f936dda97065fc2f92e52730cb94bedb46d230052be462cea983","created_at":1759330986,"kind":1,"tags":[],"content":"å…¨ã¦ã®äº‹ç‰©ã«å§‹ã¾ã‚Šã¨ç››ã‚Šä¸ŠãŒã‚Šã¨çµ‚ã‚りãŒã‚ã‚‹ã‚‚ã®ã¨ã—ã¦ã€ãれã®é€£ç¶šã§ã‚る人生ã«ãŠã„ã¦ã¯ã€ä½•ã‚‚ç„¡ã„æ™‚ã€å§‹ã‚ã‚‹ã“ã¨ã¯é›£ã—ãã€å§‹ã‚ãŸæ™‚ã€ç¶šã‘ã‚‹ã“ã¨ã¯é›£ã—ãã€ç¶šã„ãŸæ™‚ã€è¾žã‚ã‚‹ã“ã¨ã¯é›£ã—ã„。ãã—ã¦å§‹ã‚ã‚‹ã“ã¨ã‚ˆã‚Šç¶šã‘ã‚‹ã“ã¨ã®æ–¹ãŒé›£ã—ãã€ç¶šã‘ã‚‹ã“ã¨ã‚ˆã‚Šã‚„ã‚ã‚‹ã“ã¨ã®æ–¹ãŒé›£ã—ã„。","sig":"65b818527f5eb661a28bd6457ccd5c17b9e5a78fd43b944da3f998b663aa8282018f5f70f8d1ab803cf17594f97b9dff623564ae0f8e231941e78d00bd1810df"}] +[11:03:27.074] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"486694a5c6e5c3657853e9867f6ae8b37504c9e6d20056566c62f3c71d284187","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331003,"kind":1,"tags":[],"content":"New OP_RETURN \n0x2b41cdc5bd06147c420c8e7162b7ef53f592b3c3ae9ed6d98b4b3dd426de24e6\nhttps://mempool.space/tx/bbbcfba8f7095e16df8bd5163e2427808d596a20d3866371e1b1111c0bc8bb55","sig":"730d551c6f577bffd4487f56743e5c1018c7e2d59e05f633c2d44a347877cf242b6eb320a1880b184c6b0e31ed6eb2ccbaa9d55a226a96ad6a13b0aa98a5c95d"}] +[11:03:28.620] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Love to see it 💪","created_at":1759330997,"id":"c94be7d7f1249f816bf5d0baa7d8f1fc4feb1777c721fe3770a45a27406659f4","kind":1,"pubkey":"01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c","sig":"66b08a0e649e92190645e8e830225ff6f7eae24a4643088e9060b3b93e711e3fe73442498a2cc00af6334859e217856777183499eb0e2c5a14f2883bb3a314d9","tags":[["e","c9ff2d0861a306c640ad78bee9fdaf42cc47855def33bf2655ddb3d2d028564f","","root"],["p","f7512caa17d70aa7c79dc91afba80c5dcb39ab5ea07b1ab90e5e3c2b0fdc44bc"],["p","1f9b62578d41b5aa812a18e6c0875480543e00ad6142b785d367d9d1d23d975d"],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[11:03:30.398] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"84e93f53050cd9f810ba87aaad16d7937e78c45495599618092bffb90b0321ef","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331007,"kind":1,"tags":[],"content":"New OP_RETURN \n0xcccf669ad57069b3511a9cd374f02bae905dbceb45bd0ec06f9f3e62380d89dc\nhttps://mempool.space/tx/e2eb4acfab7d46f7cf4e57674d60800d81e7a1654eb5a763282a2e1f123d9fbc","sig":"c14ae41ab5ae8438ea56b160b00ac2beeedcec5042f97e7effda661737830cc72c240237cffab504f0cbdb2cae200de871d6c2f6d2d4534b6c8758e7e2480964"}] +[11:03:33.256] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Welcome. Followed. Stick around and share your music. We need it here. ","created_at":1759331012,"id":"c3a53bf77096fabe1acce330c9f2d60e5ee17e0fde4a8c91f5242a371b1e5ab5","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"b05159e8caf2cd479cfd9b59d47d5d26c777841b8d30355f6f95d86852d1e2d659109a77be0ebbc545e25f844b84e0a52e64b3d80304ee2a9b66102b9b88721f","tags":[["e","2279b6a19b2bb2e6f8b05242ea36a99a7ca16564eb7ea3c0c2b03aad3724d830","","root"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11"],["p","d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6"]]}] +[11:03:34.047] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"05dcc90c7e375d10721562c61ac54f1840b5709948c08770a809e2b3cc400aa1","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331010,"kind":1,"tags":[],"content":"New OP_RETURN \n0x0bde7ed1efac3051644192ef9f4a4e7b05d788b116b4913c8203cdac7cd6958d\nhttps://mempool.space/tx/bc98ed9d9747e8f1a4a538bc0fb3dd1b4c80dd07e5cd485b3d12cc3af1590738","sig":"24f00d3b23502b7fdee245944e54f0f61df5768289a11377818ec8783eb7f685c74dc30bee08d3b5a65ab27c7bf78056d076838236e4842a1efaf17e872ac310"}] +[11:03:35.911] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Super smooth moves!! \n\nHumans being extra cool! 😎 https://video.nostr.build/164919cfbe67580769b17e13c304ff1ca9d92572dd5c4de58b694f2aad5194b7.mp4","created_at":1759331015,"id":"b6e06413e1ab07098b258e608f0e52113870c3869e0013fe3211ff6e544a4577","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"ddd3c593db0878d3d661d94a892d77d97bcf2838baec1488047b1c6bee10200d037dc4c811ed628efa3b9d67ecf6ff071cdd5a1a670f42774c185074df03be69","tags":[["alt","A short note: Super smooth moves!! \n\nHumans being extra cool! ..."],["r","https://video.nostr.build/164919cfbe67580769b17e13c304ff1ca9d92572dd5c4de58b694f2aad5194b7.mp4"],["imeta","url https://video.nostr.build/164919cfbe67580769b17e13c304ff1ca9d92572dd5c4de58b694f2aad5194b7.mp4","x a7f16653abfd19d1db503f9b82e860a569debf9cd7ec1f14337a7343214c2660","size 7534519","m video/mp4","dim 576x720","blurhash _LMN_hGu%2Wqs:R,X9%2%0#7v#VsWBWB}9aKNbs9OrxukCV[oyOYOYxZkCWBNGrqRjIprrRjWqxuXSkCofW;xGozs.WqjtniR*n%adaesmoLWVkCXSs:SNn%jFWCflbHn%","ox a7f16653abfd19d1db503f9b82e860a569debf9cd7ec1f14337a7343214c2660","alt "]]}] +[11:03:41.211] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"dcc04da225e98be70ceba74be2be075b6b6b254ad9256e7834b2d556a6962a05","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331017,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/a66ed7b580deab8d353ec29769840ab60f9995f027de73b3fc05ccdac0461cf7","sig":"e4e53bf8ff7b9e8bb271e7462485d13dca0322047bae125f12faedad2e3accc106abb96dd456a9ac76146d43b43d98d6ebbff6ee901168b1ef41a05b46895558"}] +[11:03:42.966] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"âš¡ï¸ðŸ“Š NEW - According to traders' estimates, there is a 99% chance that the Fed will cut interest rates on October 29.\nhttps://blossom.primal.net/4559cb464af0e34849ede1e8ea9397cce602c43acf4fccdd36e8e5712cc5d4de.jpg\nhttps://blossom.primal.net/5674cfbec51bef05e2ade29e36f2800b7e3124faa20ded9a9e4a73c1bca59a5d.jpg","created_at":1759330998,"id":"1fea6ebb296997e977897a0713566398796e4ca8eefb1530a7839b4b9744180f","kind":1,"pubkey":"4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","sig":"ff49d34ddb25498f771e274d475e4896e8f28de88d01c9c42a6e32cbbca3d48cf0354db9324aaeaa9a10332298b25f4ab07b9556b6858d854a3413792e98b4a6","tags":[]}] +[11:03:44.635] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"afd667f11f9661b04de43d29d9f8bed4faf7d2da289823f551427f94855ec1d4","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331021,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/448d6fd31b94c49dd1c6ecabdd085e961803ffc8f8d84950308a955d1bf846e6","sig":"25e4afa025ed9e894ad005a5bba215c04ade4c2a3bdfde7f25f0e4efe54bc19426d0052b620e3f758e3d17d69c7fed3b5fd7b0b18e729526b0a7721f96a7de5f"}] +[11:03:49.965] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"acff9aa895b6ab020aa69cf23905a060ccd6a61679f3f32f77943e537f346868","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331025,"kind":1,"tags":[],"content":"New OP_RETURN \n21038702234\nhttps://mempool.space/tx/6182f786f4602e9911b39b5af570d2cc1129f3e51241f19c430b8285d74a9bb8","sig":"8cb40a8e69c0d62d62ef81e6c5bf2f92591ac3f126a786384c634e0bdb0bd5251363e77b7fa83138baa6ca90d23d2383cf659833a2b4a5ae1d4a8b4acb2a1913"}] +[11:03:50.319] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"If you’re a fat motherfucker your bitch gets fucked by a real man. And you probably watch. Finoccio","created_at":1759331005,"id":"d7a1b7b96af1a12c8fea73dfcd4aefc0a6ed353331b25d71f665125c0ac9f6f7","kind":1,"pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","sig":"e4e30e401045baff7e894b73e71db2be97217c1d5fa867c2c2be0a3d97e6062632858c61c3d8f6ffac702519faef560621b9ff4163d4755a6a1f833a6dd8b8ec","tags":[]}] +[11:03:51.812] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Pronto, se não for baratino, os virjola ou Zé raiva vai amedrontar ou ficar secando a moça, como tantos fazem por aqui, bando de pau no cu...","created_at":1759331029,"id":"21264eaf41754af8b44fafdb7b6ebb1afaece6e02bfce5484c3f80ba2c86ba27","kind":1,"pubkey":"5172e85782c9218dab139301da5651555a8ca3c1f705c6f26f5af97347dccd1a","sig":"151fe274e98bfb0cfcca694c793864445994c3bec122759f5fe482b25ed36ac5f95b3952ffc1fcff61e84e694d9dd9cedcfa77447dd6508a42124321125593f5","tags":[["alt","A short note: Pronto, se não for baratino, os virjola ou Zé raiv..."],["e","6519036f70ad941465406130c34e211120a98d963361dcbe4e29ffed90d292ad","wss://relay.damus.io/","root","4b8f138724a55a9e5597a1f373f91d43036e1593dfbca3ce38b40ef450082f35"],["p","4b8f138724a55a9e5597a1f373f91d43036e1593dfbca3ce38b40ef450082f35","wss://relay.damus.io/"]]}] +[11:03:54.029] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d7a1b7b96af1a12c8fea73dfcd4aefc0a6ed353331b25d71f665125c0ac9f6f7","pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","created_at":1759331005,"kind":1,"tags":[],"content":"If you’re a fat motherfucker your bitch gets fucked by a real man. And you probably watch. Finoccio","sig":"e4e30e401045baff7e894b73e71db2be97217c1d5fa867c2c2be0a3d97e6062632858c61c3d8f6ffac702519faef560621b9ff4163d4755a6a1f833a6dd8b8ec"}] +[11:03:55.850] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2beebf7b4da672aa26033c576099e585300b33dcce84913dff17583d594374ab","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331032,"kind":1,"tags":[],"content":"New OP_RETURN \n=:s:0xC938cD5cEd906830D90c44F711B009109Cbf54Ce:528213:-_/t1:0/70\nhttps://mempool.space/tx/df081e1c1dcf6708a56201d4c0d1b4fb19a9f1f3bc71c571381c44f6fa15f01b","sig":"618894f3ae92af4ec627d0decfa6a7fab297969b7cd3d559c84b4af17b6b544b34f2f873737078cfdf998040edbfb14284a7a7779c2ad26db778595d7afb085a"}] +[11:03:59.206] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d402f17f8a0c749e374b8518b2f36f303fb9d247e8867f3a6cbbc1fdcf28d991","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331035,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0x874503176a5c19babdefa63a2bcf94a7e8aaeec4:198701:-_/t1:0/70\nhttps://mempool.space/tx/56d4e78df36494302c9daccee64aa4e89c4e81abcb522eceba249b36321017d7","sig":"ba7b1194fbfc03a72266d5a454a52e88d4fa0f93853bbb2a4db60bbd7291753461aef4f96503ba44b628b0605e4565c3fa050e3b6d5809fe2b3c6d23b036c431"}] +[11:04:05.128] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"今天跟家里è€äººåƒé¥­ï¼Œå¬è¯´ä¸€ä¸ªäº²æˆšå¹å˜˜ä¸€å¤©ä¹‹å†…赚了90万,我就问了一个问题此人上一次这么å¹å˜˜æ˜¯å‡ å¹´å‰ï¼Œè€Œä¸­é—´è¿™æ®µæ—¶é—´æœ‰æ²¡æœ‰æè¿‡è‚¡ç¥¨ï¼Ÿè€å¹´äººå²æ•°è™½å¤§å´ä¸çŸ¥é“很多人是ç ä»“ä¸è¯´çš„ï¼ŒåªæŠ¥å–œä¸æŠ¥å¿§ï¼Œå‡å¦‚æ—¶ä¸æ—¶éƒ½æœ‰è¿™æ ·çš„盈利水平早就上天了,普通穷逼亲戚哪里还能攀上😂\n\næè¿°ä¸­è¿˜ä»€ä¹ˆèŠ¯éª—ã€å›½å®¶æ”¿ç­–ã€é»„什么ã€ä»€ä¹ˆè¾¾çš„…都是未æ¥å‡½æ•°ã€åŽè§†é•œæ•ˆåº”。最近几年,我已ç»ä¸å†æŽ¨è任何人任何投资标的,因为我ç†è§£äº†æŠ•资是自我承担风险é¢å¯¹æœªæ¥ä¸ç¡®å®šæ€§çš„ï¼Œä¸æ‰¿æ‹…别人的盈äºå°±åªèƒ½ç®¡å¥½è‡ªå·±ã€‚头头是é“的分æžå¸ˆå¤šå¦‚牛毛,但有几个能æˆåŠŸè½¬åž‹ä¸ºçœŸæ­£çš„æŠ•èµ„è€…å‘¢ï¼Ÿè¿™äº›äººéƒ½æ˜¯ä¸å‚与风险共担的å–铲人而已。","created_at":1759331044,"id":"078291b4317e729f3ac09da5b49bde041bf5b78a5112890d1fb4f19217b0888a","kind":1,"pubkey":"81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5","sig":"44fa7807f4e3301481536661c6e59eaf48c04ae6943f0ceaeb659d98736712bee3a0951a2c3573ab8ddce7959ffd7ceb14181897240afd8afa15d22c3e5a4cd7","tags":[["alt","A short note: 今天跟家里è€äººåƒé¥­ï¼Œå¬è¯´ä¸€ä¸ªäº²æˆšå¹å˜˜ä¸€å¤©ä¹‹å†…赚了90万,我就问了一个问题此人上一次这么å¹å˜˜æ˜¯å‡ å¹´å‰ï¼Œ..."]]}] +[11:04:06.155] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"b6e06413e1ab07098b258e608f0e52113870c3869e0013fe3211ff6e544a4577","pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","created_at":1759331015,"kind":1,"tags":[["alt","A short note: Super smooth moves!! \n\nHumans being extra cool! ..."],["r","https://video.nostr.build/164919cfbe67580769b17e13c304ff1ca9d92572dd5c4de58b694f2aad5194b7.mp4"],["imeta","url https://video.nostr.build/164919cfbe67580769b17e13c304ff1ca9d92572dd5c4de58b694f2aad5194b7.mp4","x a7f16653abfd19d1db503f9b82e860a569debf9cd7ec1f14337a7343214c2660","size 7534519","m video/mp4","dim 576x720","blurhash _LMN_hGu%2Wqs:R,X9%2%0#7v#VsWBWB}9aKNbs9OrxukCV[oyOYOYxZkCWBNGrqRjIprrRjWqxuXSkCofW;xGozs.WqjtniR*n%adaesmoLWVkCXSs:SNn%jFWCflbHn%","ox a7f16653abfd19d1db503f9b82e860a569debf9cd7ec1f14337a7343214c2660","alt "]],"content":"Super smooth moves!! \n\nHumans being extra cool! 😎 https://video.nostr.build/164919cfbe67580769b17e13c304ff1ca9d92572dd5c4de58b694f2aad5194b7.mp4","sig":"ddd3c593db0878d3d661d94a892d77d97bcf2838baec1488047b1c6bee10200d037dc4c811ed628efa3b9d67ecf6ff071cdd5a1a670f42774c185074df03be69"}] +[11:04:07.866] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"1fea6ebb296997e977897a0713566398796e4ca8eefb1530a7839b4b9744180f","pubkey":"4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","created_at":1759330998,"kind":1,"tags":[],"content":"âš¡ï¸ðŸ“Š NEW - According to traders' estimates, there is a 99% chance that the Fed will cut interest rates on October 29.\nhttps://blossom.primal.net/4559cb464af0e34849ede1e8ea9397cce602c43acf4fccdd36e8e5712cc5d4de.jpg\nhttps://blossom.primal.net/5674cfbec51bef05e2ade29e36f2800b7e3124faa20ded9a9e4a73c1bca59a5d.jpg","sig":"ff49d34ddb25498f771e274d475e4896e8f28de88d01c9c42a6e32cbbca3d48cf0354db9324aaeaa9a10332298b25f4ab07b9556b6858d854a3413792e98b4a6"}] +[11:04:15.060] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"79a8b7e5d5f556db78a68b500741602b2206cd875ef3c87520b4321db00e9244","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331051,"kind":1,"tags":[],"content":"New OP_RETURN \n=:BSC.USDT:0x7926d6e93a90ad3020cfbd09947ecb6e066fce33:714403943:-_/t1:0/70\nhttps://mempool.space/tx/865f6df863b799d4ff2c379ff2136a4a9b74418f81cd4f52a4d0c34c08c4d96e","sig":"1bf2deb834f336402adf33bef89419521bd0cd6d6cb1e7b5c3dab6205f124a91f73dd579c9d88591240c572bca3486c4ef7176b30340be769a5fb4a34933410a"}] +[11:04:19.514] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d69d5e99aa4db6d9be02648cb423c0734a52e18febec263fadddbe25f3055598","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331055,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0xEda933f03e1413163dcAc8F992AcEfd396A65C57:104499806/1/0:-_/t:5/50\nhttps://mempool.space/tx/315e75fe3b80854ee30f7eceb22f72772e80f26a9178f8e9526c8330ef34b733","sig":"6fb267fe7dc71b4e6f459077001e46f5625004d83d240a17dc1ae5878c91d48028e7635ed5b862b8395c05c5586678aa670a54b9309ca326e2a5b5adaaf6ba4e"}] +[11:04:23.200] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"28077bd0196f071d616fa3460371c5654986f7225ef0a7519e7b48697f11c3e4","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331059,"kind":1,"tags":[],"content":"New OP_RETURN \n=:ETH.USDT:0x8AE591048525c3b0965F1b23042341E87c567AA9:570156041e4/1/0:-_/t:5/50\nhttps://mempool.space/tx/2d9a14491bf97b8fdb3d5124f3a4959985487246a53b5c01318d32218c82163d","sig":"b3d4113984d709100c463bfb3432d90ff913fa416b9553fb16fc79ec48d3ebfc616f17078568394998a730de659dac765d11a6665539ac10ebc34cb8990761e5"}] +[11:04:23.211] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I found some good songs this week, so I was enjoying them! Hopefully there's something you enjoy as well.\n\nhttps://stacker.news/items/1244611/r/astro_penguin\n\n#v4v #music #v4vmusic","created_at":1759331058,"id":"a106f1162c663209e5be20f1a74f24fa8cf72fa9286484029260573b2727bec5","kind":1,"pubkey":"498cb92adc7f6bb7556a8ed293007739d70718acfcc8df24e3f6c81e9b4273ef","sig":"3706a39afefcfe2025b6f05f08cc9cc248c88853433336563b907ef7372435584a4c53c4218a93f24f621e83e3180ba0ee26885ceae2cda16f7ea472200073ac","tags":[["t","v4v"],["t","music"],["t","v4vmusic"],["r","https://stacker.news/items/1244611/r/astro_penguin"]]}] +[11:04:29.511] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"f3a9bdbb7cff64dd3b1f6381603f29d83d0c16a8d18f94432e20238757d653e9","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331066,"kind":1,"tags":[],"content":"New OP_RETURN \nSYMB:1322:d=197\nhttps://mempool.space/tx/9717b0c74a86f744fe07dc5a498018929510165466b6f2b290244de7a333424d","sig":"a1457a37f6665c6f8c2f1bf5d9c9c79264daed031032ace507aac9a939f83a3e91846331545f05d623db64a0503de740c64f989a48982d7c9a21e260d4ff6647"}] +[11:04:36.923] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"55748c5a002bf45545a6f2fb6f52e301ab8c09a2f9cad8ffbc4103bc9e856902","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331073,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:88FD2D7F4B7D537820520A6643C9A9F785E80B274B61BDF28264529F95B47F5B\nhttps://mempool.space/tx/4098195116b659122ce338736f3997eaf6fc94c2810f4e36c27861a075fcedde","sig":"0b10e02becc14e666858ddc16e90717ab97db97d66a2ab1d56a7edc6c45474a6087037cbc9a6f701d4a34caa1f97d24969a6cc5847a110c2d8ffc8cad41306b9"}] +[11:04:38.870] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"a106f1162c663209e5be20f1a74f24fa8cf72fa9286484029260573b2727bec5","pubkey":"498cb92adc7f6bb7556a8ed293007739d70718acfcc8df24e3f6c81e9b4273ef","created_at":1759331058,"kind":1,"tags":[["t","v4v"],["t","music"],["t","v4vmusic"],["r","https://stacker.news/items/1244611/r/astro_penguin"]],"content":"I found some good songs this week, so I was enjoying them! Hopefully there's something you enjoy as well.\n\nhttps://stacker.news/items/1244611/r/astro_penguin\n\n#v4v #music #v4vmusic","sig":"3706a39afefcfe2025b6f05f08cc9cc248c88853433336563b907ef7372435584a4c53c4218a93f24f621e83e3180ba0ee26885ceae2cda16f7ea472200073ac"}] +[11:04:40.362] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"91a8d6a4a75701d9c2ec3c777e28c350c1abac4a53e2e36751489cfe8ec3f11d","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331077,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:6EB277235C08F886F1A36C1F249DBDB281E1446BBA166323B19F5B0CF3DBCC67\nhttps://mempool.space/tx/c0a3e8227539d49da1a6a6f5c21998d6bd8db125bd5412b9d072cfa3115a91f3","sig":"88cbbed01bfe5761500dc4cfe56dda6cd652b97a33a1c54e704233fe5b9efd6f49d860786a8d99dec4c410ac9728907008e0d9242b5d7ddf33dd52f4c4f87a42"}] +[11:04:42.127] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"My wife better not wear shoes without my permission ","created_at":1759331075,"id":"a60169bd878f76720a165cbd815cbf6bf51c9e5bfc61d68e1185d1fc57302925","kind":1,"pubkey":"8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","sig":"1a895d74ad83b4b1917c8e9cbcf174e6146a9a148b2c516eb1e0f9b96eaf7680a6ad62d4c69a24d303e82abed52dd2b42d1124ff12bb5c1408cc2c6c87f1a54b","tags":[["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://bevo.nostr1.com"],["e","0168a2bcd1b4ae8640484fa6f3a15d8ed83c8eef20e824be2273cacedbdd6342","wss://bevo.nostr1.com","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:04:44.058] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"that doesn't even... make sense.... governments I guess....","created_at":1759331083,"id":"ebf3f9381af7315eaf56b758bc773d4adb80fa0d0f80e4077e1fa93976d58922","kind":1,"pubkey":"66675158e6338fe89fda418e42a0bf2a7a2b132504dd347f015a18971b644430","sig":"9c82dde95874e3649b2f504c73f4a4da7f2b224b742b0bbe33bd8840ebbbbb18b1fb23beef2a3faf31403fb911474490745088b49b06556f6f0471b84e08afbf","tags":[["e","ba57f3c4e585f8df5f5790867dafe512f34b7f46036991e8a7e9ad6b303d49f3","wss://nostr.bitcoiner.social/","root","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975"],["e","867ec967c6621f1cdb4057f291638f6b584908076898ed008ed6042f43f48b96","wss://relay.damus.io/","reply","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975"],["p","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975"]]}] +[11:04:44.411] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"373da3c2a76857b931e7b90312f43d392eb32c7e51db285c490b7d23352c7bfb","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331080,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:53376283A0B46C4265D9C13755B626DE903E6931316F78AC6D4EB20059228AA0\nhttps://mempool.space/tx/a6cd9eac74897477b6d27e1af7faa64ac0b1a1429857f2adb59aae1cf8e0c83a","sig":"da9a5fad473286f365778569d5344c5e216f855a3658666e1351a157aa95aff393cb111e821ce22424868318bcd3c0529cee2a39467f850f5fe8dff02be635e8"}] +[11:04:46.604] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#ChicFierce 💄🌹 \nhttps://images2.imgbox.com/b7/ec/2R8Vrvf6_o.jpg \n#JoyOfLife ","created_at":1759331086,"id":"9e19e2190644275abc83a7bfdac448b5bb993fad78b9af2649c494de4d758145","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6b211e16e799313fd0b792cffafff11539e3b4fe4a3a82b9f1063dff28789f0b11ce2184c636867a5941754ef0720a96df0cc63e3f684d046169e6176f753abf","tags":[]}] +[11:04:46.642] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"9e19e2190644275abc83a7bfdac448b5bb993fad78b9af2649c494de4d758145","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759331086,"kind":1,"tags":[],"content":"#ChicFierce 💄🌹 \nhttps://images2.imgbox.com/b7/ec/2R8Vrvf6_o.jpg \n#JoyOfLife ","sig":"6b211e16e799313fd0b792cffafff11539e3b4fe4a3a82b9f1063dff28789f0b11ce2184c636867a5941754ef0720a96df0cc63e3f684d046169e6176f753abf"}] +[11:04:52.630] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"84e603d7ecfff9b4630af6c0600a0333983837fc497d44899e9b55ec1a053575","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331089,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/6780d0ea35b26cc0c77c3268c3aec2f865890a1a6f52bd4df2dc4b5ff104e2ef","sig":"1c54b768585e14039d82d0fba856ee6226e6f1504eb7d828e95f935a73663a3426334fc60a71db1a5c0cc61a1bf5567bc5ca67a9b53d73600e985f81ef07e06e"}] +[11:04:56.753] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2423d433542f80419b53b2a4dc1332d3a2f7f249362bee5f97db29644fa40861","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331093,"kind":1,"tags":[],"content":"New OP_RETURN \n0x2482848695ed0388245f277e01916cc4de88aff0b9de0979c06e507b5e175fbf\nhttps://mempool.space/tx/96362868228ed11d80e264b93c8f24173f2ee65e9a537dd0e493eeb552d98f76","sig":"4069f9b37c16055a58d0cccb58d9a27919f8606e8b78e1140822d68a3f155c65652b6be57963c81e9ec2422c30f0a74e9e840dbad35c69395bd7d7195199d929"}] +[11:05:00.877] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"041c4a7b9e1484b16aae3b50b3c6224c2ccfc0c63c69c9f5228c5aff9806dd03","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331097,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/1eda4b7219d24d970cfe90b37002b9be02c6e77a096575ff6291f91b90037215","sig":"a3831e13d6bec2a40ecbace2bc4f9d0574207f0f12932b3ffe9b498eb75d795af5f5dc52b0fcd5047f195ad6e4ab74bae296f8a23c1d95aad523c6c992500634"}] +[11:05:11.730] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🗒hit 1 million notes in my desktop damus node. 644MB!\n👀17132 unique pubkeys seen\n\n$ ndb query -k 0 -l 30000 | jq -r .pubkey | sort -u | uniq | wc -l\nusing filter '{\"kinds\":[0],\"limit\":30000}'\n25035 results in 60.120867 ms\n17132\n\nhttps://jb55.com/s/d27e4f552f5550ce.txt","created_at":1759331103,"id":"63f22696920b20f07fd8d70a9838d94fcbf574bce61ab73e2d7de0d3129c1034","kind":1,"pubkey":"32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","sig":"eb546df8eba1cf834f159162e445ea8810171e9c111565b54b2beab135a0c960036c2e765a50322754f8cea35156e4c1c505df316abf946831f2d75c94eb284f","tags":[["client","Damus Notedeck"]]}] +[11:05:13.334] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Seems like nostr:nprofile1qqspnzgrfett3asxcuj0gksje6z2zxzpvgd27uvz58m9vsuqh8zzw6cpr9mhxw309a382emdv9hzumt8w4ujumn9wsargwp58qq3vamnwvaz7tmzv46xztnwdaehgunfdshxxctdqydhwumn8ghj7en9v4j8xtnwdaehgu3wvfskuep0w3hku7gpewmsc is making wiser choices than nostr:nprofile1qqsvfr3f7p95stxqrjslnmuvsmhcxxxqt8swjdfjx5tz7zq0yms5cygpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrthwden5te0dehhxtnvdakqzynhwden5te0danxvcmgv95kutnsw43qudhcug\n\nJust saying. When the dust clears... \n\nSome will be respected more, some less.. ","created_at":1759331112,"id":"f27f0101520fae5b81e447472f72d1c5b7786a0aac1310771fc36b54314b2b04","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"b600b0f7ab753b589a426e618389e3b1ac35a21bec9471162714a5af8018a057c1de2b8997f40dbdfb4b5e5fb745f5ebc301ec874a2ce727884cd62e69e7e983","tags":[["e","4495f94f0cbc97c6e464c04df8751e0138883b5484dd36fa87cf3cad6335a881","","root"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b","","mention"],["p","cefbb781c5f914f3d1231aa97cf39cb89c2d3e4b2deda0b26c83bb8b869b3837"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11","","mention"]]}] +[11:05:18.949] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"0000064801e619426ed0d8dbb0d76002c1154e3eb75233abc823a59ce47b862d","pubkey":"c558c7cc69bbda3c271782b736babc64acd2da258b14f356dbca966cb0b7b89e","created_at":1759331118,"kind":1,"tags":[["e","41e7c76cdd6c69fcfb960084a62a6ccf00f84f6502bdc78c6c9540b23ee8c609","","root","47e3d652dec0bdec6da4a96ebf16bf64bed5b494c0aef073a3bb4d93f7d70bfb"],["e","41e7c76cdd6c69fcfb960084a62a6ccf00f84f6502bdc78c6c9540b23ee8c609","","reply","47e3d652dec0bdec6da4a96ebf16bf64bed5b494c0aef073a3bb4d93f7d70bfb"],["p","47e3d652dec0bdec6da4a96ebf16bf64bed5b494c0aef073a3bb4d93f7d70bfb"],["nonce","5457698","21"]],"content":"🤖 Tracking strings detected and removed!\n\n🔗 Clean URL(s):\nhttps://x.com/gunthereagleman/status/1973017881379013032\n\n⌠Removed parts:\n?s=12&t=Fc5E0WYiF0aTLKR2FkE7FA","sig":"811d5f747045ad0beb3dda818a51a71b3bc9f845137c7b96c58b9dcb147754c9fc92e672e336a69ab209ccd419764db8be4f74911c9f3ad7e92c58e82878a2a5"}] +[11:05:19.059] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🤖 Tracking strings detected and removed!\n\n🔗 Clean URL(s):\nhttps://x.com/gunthereagleman/status/1973017881379013032\n\n⌠Removed parts:\n?s=12&t=Fc5E0WYiF0aTLKR2FkE7FA","created_at":1759331118,"id":"0000064801e619426ed0d8dbb0d76002c1154e3eb75233abc823a59ce47b862d","kind":1,"pubkey":"c558c7cc69bbda3c271782b736babc64acd2da258b14f356dbca966cb0b7b89e","sig":"811d5f747045ad0beb3dda818a51a71b3bc9f845137c7b96c58b9dcb147754c9fc92e672e336a69ab209ccd419764db8be4f74911c9f3ad7e92c58e82878a2a5","tags":[["e","41e7c76cdd6c69fcfb960084a62a6ccf00f84f6502bdc78c6c9540b23ee8c609","","root","47e3d652dec0bdec6da4a96ebf16bf64bed5b494c0aef073a3bb4d93f7d70bfb"],["e","41e7c76cdd6c69fcfb960084a62a6ccf00f84f6502bdc78c6c9540b23ee8c609","","reply","47e3d652dec0bdec6da4a96ebf16bf64bed5b494c0aef073a3bb4d93f7d70bfb"],["p","47e3d652dec0bdec6da4a96ebf16bf64bed5b494c0aef073a3bb4d93f7d70bfb"],["nonce","5457698","21"]]}] +[11:05:23.097] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"50 Things I Know - by Rebecca Dai - Cicada\n\nhttps://rebeccadai.substack.com/p/50-things-i-know","created_at":1759331122,"id":"1bb4c71f6e824227273f7c90950332d53087e255c6796e8249ba3c5bf1f1b3e3","kind":1,"pubkey":"235b53a1017d7bb656c1258db54a0c9563e4ccd8cea66b650659d6d3df299127","sig":"1db414b8fe56450c02e41593d3984e575aa53ebec0c22b4be97a4109a95b62075b760f7f3a8c03b6bfe2f8dfcaf518497bd727876ff2e02feac713ff1c11fe19","tags":[["r","https://rebeccadai.substack.com/p/50-things-i-know"]]}] +[11:05:34.305] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"8887a1f8fb760b0b8128e3e7e513985057c3d2b4d85f5418033f375db14ae6ae","pubkey":"f74f0159af602195f2890d47acc1b9cd8774175afcba8f6239e3d40413df1eb9","created_at":1759331133,"kind":1,"tags":[["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f","wss://nostr-verified.wellorder.net/"],["e","915684ad26f71fee8fa0e34339b0464f985dcef779a865c4d208b637b17cb9db","wss://nostr-verified.wellorder.net/","root","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"]],"content":"That would be nice. Essentially flat for the year. \n= / \n\n","sig":"1260aec01611d05a1cf7f2b3e0305d417fd8fe055237e07b5744c1fbf83490e7d510b9e37631adde15fddbacfac49a64205e706a5f17f652caba296f5e9f501d"}] +[11:05:37.399] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"think about all the money you spent for the schools, books, college, etc.\n\nand now think that you could have instead got bitcoin with all of that money. and teach yourself about, money, and any other thing like programming computers and stuff.\n\nimagine the productive hours you would have actually learning things, and building something. instead of trying get fiat points, scores, grades. ","created_at":1759331135,"id":"96117a335f2f4255147f523252ec765148a2957742f6f3b47ca0aff012e357c0","kind":1,"pubkey":"45835c36f41d979bc8129830f2f5d92562f5343d6feddd6f30aa79480730f26e","sig":"db85307fbca57ea7f7aa85f8c06d55c7ab658be06d240ef2a89f017f4f6d420286e65cc1665be429cec8905725352f2b4258c49079764b88aad0a69054e0f626","tags":[]}] +[11:05:46.238] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That would be awesome. I want more long form stuff here. ","created_at":1759331145,"id":"f39d0a5f7305174d24fae72b66746b8a9eeb4aa70a50a70e1e01482e82f280ee","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"333fd8bf87aec6cfba79a1567ccbbda4be745ec50afbc12003162e269356532efefe3837369d798952672fa95bfbb01a3f41b64cb4cbb216ba4a33de8f7bbddc","tags":[["e","c6eddeccf7476ba783431d81df841dbe88685fb48a3d26b951395a6dfa00b381","","root"],["e","4476c54e238747b09dcb69446c2eb3fc1d0422ab43d3ec6ed116f1203e090e4c"],["e","50df70cc50267104818661a28b57d2270e04491ae2ba17103831dbd0d4223ef5","","reply"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:05:46.305] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I would like to see it work out as a viable alternative to Substack.","created_at":1759330972,"id":"50df70cc50267104818661a28b57d2270e04491ae2ba17103831dbd0d4223ef5","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"df0d48235189fcfb34cd9cdc2f4deb6fcc433f833144a8fc66eeff99665959612ab663482eb053c902434b8909d17c97b836faa927b36c155780d264d53c1495","tags":[["e","c6eddeccf7476ba783431d81df841dbe88685fb48a3d26b951395a6dfa00b381","","root"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","4476c54e238747b09dcb69446c2eb3fc1d0422ab43d3ec6ed116f1203e090e4c","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:05:56.349] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"There are no rules","created_at":1759330423,"id":"f5a4f16abf56b4a6af7db1022a7d416e5e868d71925991a64d9b29c9415a2c68","kind":1,"pubkey":"9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7","sig":"a1dff1269529f2ce6c3364fbc86477289f62a64a6478bc64d78a4202b375b56640cf4a47f0d9bbaa0a82cc500312a08e7051210b617ea556fa0374ed30f83cca","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["e","d8610b181580f31fdadbdbae029dc6c86029cf30ecd9736a8f77be69834a0687","wss://relay.damus.io/","reply","aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253"],["p","aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253"]]}] +[11:05:57.188] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That's because they make up for lost time when they \"restart\". The trick is to have a shutdown without a corresponding restart.\n\nI'm not holding my breath. This zombie is gonna keep going until there is a major catastrophe.","created_at":1759331157,"id":"b9a87a57c26547b8b912758f467552ba8baceb4fb2041be0dc6f622ed4b1f501","kind":1,"pubkey":"d3052ca3e3d523b1ec80671eb1bba0517a2f522e195778dc83dd03a8d84a170e","sig":"cee1ec2edbe2589dccf2b1fd7abf80abacb2c4f23798b5a35756e47639113d930068183dd68e6c81891dda2acc0c950453a5f112cc983e1109b60246f07e6d0f","tags":[["alt","A short note: That's because they make up for lost time when the..."],["e","ba57f3c4e585f8df5f5790867dafe512f34b7f46036991e8a7e9ad6b303d49f3","wss://nostr.oxtr.dev/","root","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975"],["p","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975","wss://nostr.oxtr.dev/"]]}] +[11:05:58.879] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"5d9b6b3990ed505901ee923486611e37aa184f350eb2fe33bad325781e0d040e","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759331158,"kind":1,"tags":[["e","cda7990edad84752feea58769149cd3d8a4f8eb08a39a94b4ec8c2c30343f8fa","","mention"],["r","wss://no.str.cr/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.land/"],["r","wss://nostr.mom/"],["r","wss://nostr.oxtr.dev/"],["r","wss://nostr.semisol.dev/"],["r","wss://purplepag.es/"],["r","wss://relay.damus.io/"],["r","wss://relay.lexingtonbitcoin.org/"],["r","wss://relay.minibits.cash/"],["r","wss://relay.westernbtc.com/"],["r","wss://nostr.wine/"],["r","wss://relay.primal.net/"],["r","wss://relay.bullishbounty.com/"],["r","wss://knostr.neutrine.com/"],["r","wss://at.nostrworks.com/"],["r","wss://lightningrelay.com/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://btc.klendazu.com/"],["r","wss://nostr-verif.slothy.win/"],["r","wss://nostr.einundzwanzig.space/"]],"content":"😘👠👈 \n\nnostr:nevent1qvzqqqqqqypzqqqqqdpjkvc9050td4ugg3wvg6q3gc4m6kgddd2xsd95zh442p4lqqsvmfuepmdds36jlm49sa53f8xnmzj036cg5wdffd8v3skrqdpl37s6ag60l ","sig":"6b083baf0abc89ca6544fca123cd9ac6126f58460d7931da2a8607d2666d4d1de0b31e423fe1051f78115ccf8b9d2fffa039e8f602dece004e1e305776973ab0"}] +[11:05:58.989] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"😘👠👈 \n\nnostr:nevent1qvzqqqqqqypzqqqqqdpjkvc9050td4ugg3wvg6q3gc4m6kgddd2xsd95zh442p4lqqsvmfuepmdds36jlm49sa53f8xnmzj036cg5wdffd8v3skrqdpl37s6ag60l ","created_at":1759331158,"id":"5d9b6b3990ed505901ee923486611e37aa184f350eb2fe33bad325781e0d040e","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6b083baf0abc89ca6544fca123cd9ac6126f58460d7931da2a8607d2666d4d1de0b31e423fe1051f78115ccf8b9d2fffa039e8f602dece004e1e305776973ab0","tags":[["e","cda7990edad84752feea58769149cd3d8a4f8eb08a39a94b4ec8c2c30343f8fa","","mention"],["r","wss://no.str.cr/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.land/"],["r","wss://nostr.mom/"],["r","wss://nostr.oxtr.dev/"],["r","wss://nostr.semisol.dev/"],["r","wss://purplepag.es/"],["r","wss://relay.damus.io/"],["r","wss://relay.lexingtonbitcoin.org/"],["r","wss://relay.minibits.cash/"],["r","wss://relay.westernbtc.com/"],["r","wss://nostr.wine/"],["r","wss://relay.primal.net/"],["r","wss://relay.bullishbounty.com/"],["r","wss://knostr.neutrine.com/"],["r","wss://at.nostrworks.com/"],["r","wss://lightningrelay.com/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://btc.klendazu.com/"],["r","wss://nostr-verif.slothy.win/"],["r","wss://nostr.einundzwanzig.space/"]]}] +[11:06:14.807] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"02180bc2169ec5e34c68f2b2f41bb14f52e05f17da756de9ef6b11f21c7700c1","pubkey":"f74f0159af602195f2890d47acc1b9cd8774175afcba8f6239e3d40413df1eb9","created_at":1759331173,"kind":1,"tags":[["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f","wss://relay.wellorder.net"],["e","ce0d05e18103615af78a74b6ef24343c32100ade5ca59da71535cb8db87cd602","wss://relay.wellorder.net","root","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"]],"content":"Good Morning 🌻 \n\n","sig":"39efb2ee10e73139a4b3710ad26d5b899a0cc118e4633313375141ac14d0b1f47c0149f7546df05bbc150a3d62842dfdcf5d2a879ccb62d1251feac2b887354c"}] +[11:06:18.098] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That underwater \"cha cha slide\" dance is upside down. https://video.nostr.build/a0e5c093dee36d9a1afdfcabab600f3082d00fc97d0b861f0458f2a6aff328b8.mp4","created_at":1759331177,"id":"3afcd1ee37fb65807f2145d41abb423464c221d411254f3959c14820d25fbd3d","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"34cd5e43dbb0d02c75e917b47ab698994ece5a98d86a781df694d925ad77d415cefcec775abffbe234fb61b6f89ece5721266db3740bd56e404730dafdc6146a","tags":[["alt","A short note: That underwater \"cha cha slide\" dance is upside do..."],["r","https://video.nostr.build/a0e5c093dee36d9a1afdfcabab600f3082d00fc97d0b861f0458f2a6aff328b8.mp4"],["imeta","url https://video.nostr.build/a0e5c093dee36d9a1afdfcabab600f3082d00fc97d0b861f0458f2a6aff328b8.mp4","x 491ba20b798f959c2c7ba7de18ec4555737e4b83b8d9c388d28e0b7ad1b38ff3","size 1710752","m video/mp4","dim 480x852","blurhash ]UG+@Ax]F4wHwH^c%1aeo#WV~nxZn$WBR+bbn$Vso}X8m,X8Nas.jbbbWBRkt6WBkXa#oMf6RkkWaet6WXWBo0ayt6a#a|","ox 491ba20b798f959c2c7ba7de18ec4555737e4b83b8d9c388d28e0b7ad1b38ff3","alt "]]}] +[11:06:24.154] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"f5a4f16abf56b4a6af7db1022a7d416e5e868d71925991a64d9b29c9415a2c68","pubkey":"9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7","created_at":1759330423,"kind":1,"tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["e","d8610b181580f31fdadbdbae029dc6c86029cf30ecd9736a8f77be69834a0687","wss://relay.damus.io/","reply","aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253"],["p","aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253"]],"content":"There are no rules","sig":"a1dff1269529f2ce6c3364fbc86477289f62a64a6478bc64d78a4202b375b56640cf4a47f0d9bbaa0a82cc500312a08e7051210b617ea556fa0374ed30f83cca"}] +[11:06:26.105] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"500a0166f94c947f6a4b4e6d70db1ae36322bcf09b80ea2bfce31fd7778cff42","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331182,"kind":1,"tags":[],"content":"New OP_RETURN \nxYq:to:USDT(TRON):TAB8AAjk5y5HxputFd2ZoMSUyyCkY4ZQBm\nhttps://mempool.space/tx/6288e125eef34e0760b06d2f9a321bf21ca2794bb1af7676ccf96617d7c386c3","sig":"de0a0d2fc073961696efef15912642b229e1422f2a190790a263e77a09e63c972b74ac9f2e88ac2e2ffde049ca79b365c2f24d7dcfb6fb3dbded973783f95ff9"}] +[11:06:28.111] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GM my friend\n🚀🚀🚀🚀","created_at":1759331181,"id":"f34e9565504f8af553b68a167e58d553c2c09a122ec45248a33a79815d69fbd5","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"3f2a80af42b2fc706dffd2f2342cca863c48e3e16e8698c40a725f66a5a6873276737ea5162befd9e5170047e390a796f31fc34bb1372ab57547402afe592819","tags":[["e","a6b41c97b743b80997e3870450e08e43322987ef978ce751b8c0f805437eabaf","","root"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[11:06:28.770] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,248\nBlock Hash: 00000000000000000000e781b292ac326b78a46d27ec8316e3d2814bff240d95\nTimestamp: 2025-10-01T15:06:07.000Z\nTransactions: 3,200\nBlock Size: 1.74 MB\nBlock Weight: 3,993,647 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917248","created_at":1759331188,"id":"224685a18b1a9707cf5d27721fa16221a4a355915aa9b50a3d400aa677e21466","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"627626a759f8891ad12ea1bfa970be062d26d1393f26a7e3e8ba12b42170f83db57ad4b948715e2b6c51c1bdab17d72f4fffc3f18e4a5614ed5085203af2e581","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917248"],["published_at","1759331167"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000000e781b292ac326b78a46d27ec8316e3d2814bff240d95"],["new_block","true"],["block_height","917248"],["block_hash","00000000000000000000e781b292ac326b78a46d27ec8316e3d2814bff240d95"],["block_time","1759331167"],["tx_count","3200"],["block_size","1820576"],["block_weight","3993647"],["difficulty","142342602928674.9"],["previous_block","00000000000000000001c9d681a55e77a44884e15463ea1245b3489d5ab1e182"],["mempool_tx_count","324"],["mempool_size","91985"],["memory_usage_pct","0.2"]]}] +[11:06:31.393] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"770bdceec6e67102b832aee949dc16f322e2abb2b8a82a0b77401b3c39c8c841","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331188,"kind":1,"tags":[],"content":"New OP_RETURN \nfrom:1397.4XRP:rssGvcmdkYH26h5fKXHJyQ2hZcucQqimAH\nhttps://mempool.space/tx/b872bd99a6bee81b55e00ea6dfa282a1246790112d27de1d8899c2d5143deb87","sig":"0387a31b061cbdce3c8c6540721bde9aa2afa51256fde29add0a877d4ee36a0eb0b0b2c80da46e23beee2978a6f5792eacae009500e86fbddcb0301b6db7df05"}] +[11:06:34.264] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Woop woop 🎉","created_at":1759331193,"id":"72b5f0acdd3f9b87cc89e7feffdaec6fe35ede583757fd0529b03ecdaad12839","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"f5ff99525f686e6a2f4c62c0ef08afc9a7710cda890ae6fb26fa38711bbf111d4dae269c68ff71e55f80fc34c2926f4c677b97af71efbba55b4ed92d2b01e47b","tags":[["alt","A short note: Woop woop 🎉"],["e","430ae499fa85ed475990fed36df24d51af72429b4664b9afcd38abcc66bdc111","wss://relay.nostr.band/","root","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["e","f75487d0c3f195745e7537b6e4a6b5658cc5368780287cf3f19204bac7699a16","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","7baa69c7cdab60f11a938abc84b58802f460d70e6a9edb5369ee345ed4fbe58d","wss://nostr.wine/","","c230edd34ca5c8318bf4592ac056cde37519d395c0904c37ea1c650b8ad4a712"],["e","5fac433254d42c878a9e0e411855dbcae23dd0151a6acf2a3f8e02ebd6f8bcbe","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","cbb0cdc170ee6c3e3479b0c40d1f7bb79e2c1790357d593c88337b94547e6807","wss://nostr.wine/","","c230edd34ca5c8318bf4592ac056cde37519d395c0904c37ea1c650b8ad4a712"],["e","03cd9654d574a25a19bf2838b8f71904bbc248ea80daf6d4a02545e59eff2c42","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","78d34c1cff990f8117047313a41ef38de3d8594920bf892eeee3625cfbf468d1","wss://nostr.wine/","reply","c230edd34ca5c8318bf4592ac056cde37519d395c0904c37ea1c650b8ad4a712"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"],["p","c230edd34ca5c8318bf4592ac056cde37519d395c0904c37ea1c650b8ad4a712","wss://nostr.wine/"]]}] +[11:06:34.855] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"19faab3c44f4aa4affd4696eae627ce381b84a1019baebfde35f755d2df52d0e","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331191,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:DC42D89525A8D38450A353D85A456E7D06D08D1A76AEE4780677D3B6753388E7\nhttps://mempool.space/tx/d0e0c097aec32a8d7ea8708bc8637bce15b9d591662b88e4be18de589df8958d","sig":"886298e33d51a315b871f0b11eb94b80ef31e8e74387015b185cdbccd564538b82f432ef9fb592642535fde641d56e655f58004c9f27004a1542ce140cd36490"}] +[11:06:38.451] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"cee9c7f74b296a9191fa48ca875cb9f16c367220458c432d4e081713b19c1ec3","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331194,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:5A979D4286712BF52F06742A18085048EB82F00D5EBDDD17A527A1903F5EDA5B\nhttps://mempool.space/tx/f8807876f8e97a42aee5ab468af62ae24c1577cb951e656347c6181add83af6d","sig":"f7c2291aaa416fed72d5006d74c684d0d5f8e9cfa20a55f77d41d9dbe92ae497afc78e95c00f76906a63ede77b06d8e6d57c75bc9e38615bad925f4757a721d7"}] +[11:06:41.832] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d016f9bd22278575251e67deef539f7480b552974c889a0034f7b5f45f09c64a","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331198,"kind":1,"tags":[],"content":"New OP_RETURN \nOUT:357514A6C438C246BE0B6359FA0FA110726410D91F51BF12D6D5CE32B11E7546\nhttps://mempool.space/tx/40d401463c420a53f128679616688cf455eb3765fdc02e9014e9e99ff2bb5cd8","sig":"fdc5354662856987f47689e7e772bc775ed47ec8ac7934b6e6f0afbfd6ebb6c98724f9a94f70eb04d3b07cd5917c6e86169e2ae470915600ba10fac53c5cde05"}] +[11:06:45.569] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔞 \nhttps://images2.imgbox.com/07/1b/4nL1OVdd_o.jpeg \n#ChasingLuxuryDreams ✨â¤ï¸ ","created_at":1759331205,"id":"50e37a611d23247f9230b603b40ee7f432fe1b84a55365611b36efe8545dd7f7","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"2cb52df40a173000f31abc3900896c66ff44b5136b8775fae8602d25e4bc9bf1443a7ee747bbbda16e69899a18b9b267ea0b094afa4db90ac364dba58bc81d25","tags":[]}] +[11:06:45.602] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"50e37a611d23247f9230b603b40ee7f432fe1b84a55365611b36efe8545dd7f7","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759331205,"kind":1,"tags":[],"content":"🔞 \nhttps://images2.imgbox.com/07/1b/4nL1OVdd_o.jpeg \n#ChasingLuxuryDreams ✨â¤ï¸ ","sig":"2cb52df40a173000f31abc3900896c66ff44b5136b8775fae8602d25e4bc9bf1443a7ee747bbbda16e69899a18b9b267ea0b094afa4db90ac364dba58bc81d25"}] +[11:06:45.997] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"83643bfd04fe47bf50ad03899d43f8fe005fceb6a9945ca1495d7ad0008e379f","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331202,"kind":1,"tags":[],"content":"New OP_RETURN \nto:USDC(POL):0xC3245E7f97856Df38fE33A86c81805CEaECa451e\nhttps://mempool.space/tx/8f7bacdba9556c276d6348667eecbff2603cb65a35223b701d616f482e2ce501","sig":"72e498db865e329c68b075493692de442caebe86202d51a84f712ae51d4b2ed1aa9164d43ceefca5031679aa48c7c925de233910a64f917675e3b885b94240ad"}] +[11:06:47.313] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Not a #dog \nhttps://files.botsin.space/media_attachments/files/113/638/324/832/236/616/original/db5f82f7693b6e73.jpg \n\n#Animals #Wolf 𓃦 ","created_at":1759331206,"id":"8ee336579e34af879530d83d2d0441d07045c0b60acf7493eeb261b73dcf3f10","kind":1,"pubkey":"df7e39d9885784d2852e8480f618d1030646030f9fd8098f66b46c26b537d388","sig":"0059e54a87b5e1d5dc12f54ad778b8f51835bf0453cb2097477d62e6b46d63a622c6fabe92a56cfc2e7ada65b76a311fcd0392f5ad489bfc34c9490f3cade0ba","tags":[]}] +[11:06:48.117] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"8ee336579e34af879530d83d2d0441d07045c0b60acf7493eeb261b73dcf3f10","pubkey":"df7e39d9885784d2852e8480f618d1030646030f9fd8098f66b46c26b537d388","created_at":1759331206,"kind":1,"tags":[],"content":"Not a #dog \nhttps://files.botsin.space/media_attachments/files/113/638/324/832/236/616/original/db5f82f7693b6e73.jpg \n\n#Animals #Wolf 𓃦 ","sig":"0059e54a87b5e1d5dc12f54ad778b8f51835bf0453cb2097477d62e6b46d63a622c6fabe92a56cfc2e7ada65b76a311fcd0392f5ad489bfc34c9490f3cade0ba"}] +[11:06:51.912] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"bac874cfcb2c1d21ffef64297fea7e98d79d0ce0fc1525e57ec54de3c7ab2d5b","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331208,"kind":1,"tags":[],"content":"New OP_RETURN \nto:USDT(TRON):TCmFCqVmqUu6aFAxArxACt6pi7jv1GVzVZ\nhttps://mempool.space/tx/a5566da018c366ae9ca05b7d8854f30da5016cb4c8cb90db628a512c185af34b","sig":"f0ce14a9150f16bf53fa3905dca59fb79f2a78de3ecdc9d2ff139ecefc2c9b54f097f8f71e0a7547e8c79e291cf79596e34ac2c458f35b3fb19190c48a870a5b"}] +[11:06:54.282] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"3afcd1ee37fb65807f2145d41abb423464c221d411254f3959c14820d25fbd3d","pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","created_at":1759331177,"kind":1,"tags":[["alt","A short note: That underwater \"cha cha slide\" dance is upside do..."],["r","https://video.nostr.build/a0e5c093dee36d9a1afdfcabab600f3082d00fc97d0b861f0458f2a6aff328b8.mp4"],["imeta","url https://video.nostr.build/a0e5c093dee36d9a1afdfcabab600f3082d00fc97d0b861f0458f2a6aff328b8.mp4","x 491ba20b798f959c2c7ba7de18ec4555737e4b83b8d9c388d28e0b7ad1b38ff3","size 1710752","m video/mp4","dim 480x852","blurhash ]UG+@Ax]F4wHwH^c%1aeo#WV~nxZn$WBR+bbn$Vso}X8m,X8Nas.jbbbWBRkt6WBkXa#oMf6RkkWaet6WXWBo0ayt6a#a|","ox 491ba20b798f959c2c7ba7de18ec4555737e4b83b8d9c388d28e0b7ad1b38ff3","alt "]],"content":"That underwater \"cha cha slide\" dance is upside down. https://video.nostr.build/a0e5c093dee36d9a1afdfcabab600f3082d00fc97d0b861f0458f2a6aff328b8.mp4","sig":"34cd5e43dbb0d02c75e917b47ab698994ece5a98d86a781df694d925ad77d415cefcec775abffbe234fb61b6f89ece5721266db3740bd56e404730dafdc6146a"}] +[11:06:55.793] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"fd5fefe832e01135c0e76f94f21607d394d55dd60afeaf0fc6f72de5f8baaa00","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331212,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/bbcc16bfd47f6814a903f73590e3e2fa08a7775bf03abff0224c3e37e38a6e3d","sig":"617b258ec39bc2d4d83bc60db73b5ca15c52b1b24fb8974ecd0229a6636232ca16e7bd5dc6065bd33e63c5bbe2f7eecd054b44c2f8f07359248bfbe960d51900"}] +[11:06:57.877] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Todo lo que hacemos en #Bitcoin lo hacemos con mucho amor. \r\n\r\nCada granito de arena cuenta. ✨","created_at":1759331217,"id":"9c6f6a36c1ea730d26b86f5e7b859ff565f60e5c57bce9a861d63c88e6cee4b5","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"e8b8f2dd1b008118028c5bb9f273dfd3a0dad07d04661f0bc76f89a4a1b56ec05bc2c3c01f577e35612295ca4212ef9c3ae564b9f77076f77410eed79b83d820","tags":[["t","bitcoin"]]}] +[11:07:07.793] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"fb1c8cb120e96ea377034db00f90bc70b9d5ede3975600514698ce75c170b82c","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331224,"kind":1,"tags":[],"content":"New OP_RETURN \n=:BSC.USDT:0x22959b6eDD124423A0A6D8f51fbc88BF9391b37D:202384105/1/0:-_/t1:0/70\nhttps://mempool.space/tx/de05506ff912fc684d8d1178db12d8e4cb3d6ef5e1051bb4a2648019af67f6a3","sig":"6e45a2e50eb8563b4284abe50411662c397c34d0b42afa102d6dce655eff0edcbf4df941d6136498e01e205c43ef12d0fba2340e6d16c3f7997267b9b1a76533"}] +[11:07:11.262] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"a8682f9980f7100b8a923479f18e5ccfc4479b42803edaa1cdcf08573a397cc9","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331227,"kind":1,"tags":[],"content":"New OP_RETURN \n=:l:ltc1quuu905m07nzu5lzurep9x5k2x8ax7watvw8x29:10134953:-_/xdf:0/85\nhttps://mempool.space/tx/0152aeed8b5c59841c6220b24bdc8fe8ae3ee8ae7a293b4ea355ed97875bff2f","sig":"dccd7238463dec5e61d6bb7e97a6e7682405e88da977fc268e0b32d06fbc815def098617824646a73a8a9bc2d232b6250215cabfd18dc1bdd27cef9e8c682a9e"}] +[11:07:15.497] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"6808ca7a0727b34d9512ad83220a5b557ec0e25a8c3a31018a02adb9fb440b3e","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331231,"kind":1,"tags":[],"content":"New OP_RETURN \n=:s:0x7926d6e93a90ad3020cfbd09947ecb6e066fce33:299599/1/0:-_/t1:0/70\nhttps://mempool.space/tx/f67ca0e76e3f3c09159c330ece7ed4bb3f8e5e1b74d78b1f9bca1fb729f34be0","sig":"c6b950ea32a21de5236bdb947f9afc7d1b4f57cee17bbe2456d84c4c751ca5ae1469184e922dc765c3e2e81d1209fa9e7a38bc26c3189747af26ff347f4613c4"}] +[11:07:18.870] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"0484ebfe007cd64fd510ba5e50d9f61b1d4593864a3288201049e77431d32e82","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331235,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0xf859214F6742C4E1828C0c05e720A14C4d2075ED:13125433/1/0:-_/t1:0/70\nhttps://mempool.space/tx/fc1826dedd2d0c3e9809264f9e4f6ab4a13d8db544206812a3f73557f3ec3f70","sig":"e6207138e5bd109cc054c7a48c8e6c2e9e9e9b40f65c8ab46e1651ba1a4744e9c079829fd93f70ec5a688828d99984dff4b59d3004abd6c31ef1066fa1347aac"}] +[11:07:25.079] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"1a9d4e68a0abf12b4278e9990ed92e79ad29f4ce18629a4ef44b55b191aee20d","pubkey":"f74f0159af602195f2890d47acc1b9cd8774175afcba8f6239e3d40413df1eb9","created_at":1759331244,"kind":1,"tags":[["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"],["p","135cff06447496cb5619ed2b434f4cf0dfe7ff0eb42df294aceeea67fdf6b281","wss://nostr-verified.wellorder.net"],["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f","wss://nostr-dev.wellorder.net"],["e","d5ca3963bfcf34d8d5b77b9b80a69063caa89709786e41df2f55f033cf66ab26","wss://nostr-verified.wellorder.net","reply","135cff06447496cb5619ed2b434f4cf0dfe7ff0eb42df294aceeea67fdf6b281"],["e","38d76d43d73362e7d29dd0cb7dbd0626c544d621579d28300fac7ce2b09e3c2e","wss://nostr-dev.wellorder.net","root","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"]],"content":"Hellos from opa app! 🌻 \n\n","sig":"ed7ad63510a17972a79e4da6ed3de33e07a8f0a5fd3a3a343a260e978fcace5f7693c411531b2a512b70c3c0d493ea49cad6bb12c99f586292c276d2ae4f678a"}] +[11:07:26.353] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"0bcfa71acbb30a70aefaccbe360b4395ca37ce3d9169f56b07aeb3d70e9b00a6","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331243,"kind":1,"tags":[],"content":"New OP_RETURN \n=:ETH.USDT:0x63857a40192ff7E57c4BE523A0bfaeB525C76169:0/1/0:zengo:200\nhttps://mempool.space/tx/0426a619e320218b1b4a096be52e009cafb7ebc082517b5ec6e28f8fb6972b8e","sig":"4ed63e1f70adf31a669c268ac320e8befb4611e275e2b9aad0e049858bf9f2a1e561bb6b568968ce3cb0c22590fb13158a59fb395ca3f90d9a5fcd9ede9a0622"}] +[11:07:27.340] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"they'll find other stuff to do and probably thank you when they get older.\n\none of my brother's kids wasn't allowed TV, video games, Internet; they slacked off on the second kid and let the kid have access to it all.\n\nguess which one is well adjusted and which is a disaster? ","created_at":1759331247,"id":"6e767f052d396c9b00cac4a0cd165fac5e883c6797d66e9af2b393d98b8cfca2","kind":1,"pubkey":"d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","sig":"17a16aa06d7cdd611d669daa6ec5c6d0fe27ab3347704077ba580d461396b3fa76c0199b1217d05b6894c70665975b0e4d48b84df1e97b0090dffc91724d97ea","tags":[["alt","A short note: they'll find other stuff to do and probably thank ..."],["e","09a67144a93a44309af14b4a4d0f0941c6711d615cf6c173de37bc56a3aff304","wss://nos.lol/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"]]}] +[11:07:29.887] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"2b08d4f8a452e5580db8c362037d5df559c734272ab2a5dab75090ecc37aa0e2","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331246,"kind":1,"tags":[],"content":"New OP_RETURN \n{p:brc-20,op:transfer,tick:WTF,amt:5}\nhttps://mempool.space/tx/50d73848805f7d93c447412cb82abed9e882ec10d3c774fa5ce14dfb203bd5d0","sig":"be9f19a3ae725c171b22e88e46fe357ba729df7e15e6d56288404df2b14e6864110ef4762374c54a14ba009abeadc76560ea59accddca6877c3a97aac0c17801"}] +[11:07:33.464] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"edafd982a23c4982a27a7a44f75be14e7ddf2cac980c017294b84c12f63bd379","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331249,"kind":1,"tags":[],"content":"New OP_RETURN \n{p:brc-20,op:transfer,tick:WTF,amt:5}\nhttps://mempool.space/tx/8afec41fcad4192cafee5d4728970d981421df3fb11f2e2a43680d41d2c7f290","sig":"6110514efa7c064d230900b9ce93f0e7df1a173671376efc17d80e72a0ff0c7f236da45c83704fd7d19201abd839e9e5a3c04f9f09d78af1b3c62064dde1997d"}] +[11:07:36.830] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"6ef64b4ba5eb5c918f051239808d2723b51ea52ff9e7643d31d2fefb701a7f78","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331253,"kind":1,"tags":[],"content":"New OP_RETURN \n{p:brc-20,op:transfer,tick:WTF,amt:20}\nhttps://mempool.space/tx/7ab673f649d1dbf692f8b660afde196c5c6d305ec67fe988905c04bfac112305","sig":"482c50d198b12325ec5369cb38f4d4749c30a920fe836cd59e0748fcd11c8d2f8b57ac1b6860ec97e7e66f499b3ab82cc6040f07f34afd356b23bcf99e82da71"}] +[11:07:41.074] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"b1dd11108d2a45b8fa7e7423245d3c54748318f1dc923c4d00cee297ef5c155c","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331257,"kind":1,"tags":[],"content":"New OP_RETURN \n0x4bfee5eeb838c515dd39517b6e8c2135a7c06f62fed397645b706660a273e699\nhttps://mempool.space/tx/cd3f4a5f61a265ffbaa6f2c1b584e286e89fcf2d1b0d635f9a6c13f157035547","sig":"17b411c4b1c6e7848d662ed4be68df78a0f3ea050e4680013a362e69d40c3715c68bbe3cfc623fccf64329000ef604afc11ff09cba57e6fa188a06c81dd92731"}] +[11:07:55.219] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"😂😂😂 you tell her","created_at":1759331274,"id":"c1ef236fa8b1b3bbfe93a12f3b4ba5b4bfcb20e177247bd459bcdfc1f80f1ab2","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"0d1358e0df1dc18d9e7ed123c95be7c1e69e308698f08e08bd02a8f4499ccd5ecbc3bc20193a3eba7b342aa9c4ed6095f6d23b0831b1b361d5cf9b216eed669e","tags":[["e","0168a2bcd1b4ae8640484fa6f3a15d8ed83c8eef20e824be2273cacedbdd6342","wss://bevo.nostr1.com","root"],["e","a60169bd878f76720a165cbd815cbf6bf51c9e5bfc61d68e1185d1fc57302925","","reply"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"]]}] +[11:07:56.588] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"429ff18365b3ad0993010f7a61551b84dbea6d91a7ee7069bc5e3e232979e2db","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759331273,"kind":1,"tags":[],"content":"New OP_RETURN \n=:ETH.USDT:0x5bC46f54a9E6cCC7086aE04B5799B08c0e92eE53:674602013491:hrz_ios:100\nhttps://mempool.space/tx/a63a011403f45853f35dad606281bd0b585e4e97065543267374d5a4f392a3bd","sig":"6a5bf1eb58843f1580483e920cace36b63275add840226501c83dcfab79276bfe031ed5eac5da437ae675ed26c363fe61c2ee5a05060af50b7f20105dfb6dc1c"}] +[11:08:00.537] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I've heard it said, \"the road to hell is paved with good intentions\" \n\nI say intentions are everything and many people are just clueless about what they truly intend","created_at":1759331279,"id":"39d7b082f6b197d236fe3851ac8c6fd762af2a9b1403e0bee4c61a958eb459ec","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"e4fe4f8244eccb11e859f4026d973090c644bc0bbbe70f9a913a291c7a635fd4ddd926d16057fbb4a3ec57848a751011199ef9c7896a35f5fa8772c4fe853151","tags":[]}] +[11:08:00.713] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://thm3u8.com/20240828/BJCcAGw1/1100kb/hls/index.m3u8","created_at":1759331281,"id":"b791c9ab165f01b1111152e6d0dec8c95dbb3fd65ca7d0acedc961254e02484f","kind":1,"pubkey":"6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","sig":"73bc55d73aa1f92d81f55db82e879af8ddc8ae7decb164a89abeeb036b29c8a27f1f97a2ad41f53877c9df671c40b98c110c47f099715d2726c8464d8c142290","tags":[["alt","A short note: https://thm3u8.com/20240828/BJCcAGw1/1100kb/hls/in..."],["e","0d635057c34b6bf37f599594d1c48cca4db694f1971a582bc0ba8a01ee4228df","wss://bostr.shop/","root","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","37311a7bbb666423f205923e3d8ff352e41eba5f5155a50f735ff3c2f370a008","wss://bostr.bitcointxoko.com/","","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["e","359dbb33d47dc670e3dafea63f0028baaf20729fa661fe40f77a746643367180","wss://relay.nostr.net/","","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","8dd8b65377661d7ddafe37fed9c6f52335c37af91fde5fdd2d06aba06558a0e4","wss://bostr.bitcointxoko.com/","","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["e","c5685fc9e119e24613d2279c714f7c09e2d9016f2af9d9be7d5227de5db1ce63","wss://relay.nostr.net/","","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","cb6f58d4ce208d30c0456eadcf80d0b191bf3da1156b4d2cf38eb5b3483dfa3d","wss://bostr.bitcointxoko.com/","reply","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","wss://bostr.shop/"],["p","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8","wss://bostr.shop/"],["r","https://thm3u8.com/20240828/BJCcAGw1/1100kb/hls/index.m3u8"],["content-warning",""]]}] +[11:08:06.264] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"NEVER","created_at":1759331285,"id":"6f969b8f7aa41934b8c146b2ccb0a36f07500d26dc3f0aab3781f4cd81e57783","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"167ea50aa572c81358e49ca10b7bf008dd2773c5ff10e902137085414b222ca2e93fcbf01f386861dd24da0e315c4ea1423bbe35e146654392a71e687bdb144f","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root"],["e","424ca5ef61490965d1de07105150302769e28ad662369956ba1b8371bd680a55","","reply"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["p","8aa642e26e65072139e10db59646a89aa7538a59965aab3ed89191d71967d6c3"]]}] +[11:08:06.330] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"😳🤦ðŸ½â€â™‚ï¸ðŸ¤­ðŸ˜‚🤌ðŸ½â­•ï¸\n\nsmh….only u nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz 🤣🤣\n\nhttps://image.nostr.build/fb33113906ef83c81f4bc245087178f215714075f1bd0ee7e812f56eeb20e862.jpg","created_at":1759330657,"id":"424ca5ef61490965d1de07105150302769e28ad662369956ba1b8371bd680a55","kind":1,"pubkey":"8aa642e26e65072139e10db59646a89aa7538a59965aab3ed89191d71967d6c3","sig":"f4e22a5cc418924603ca32d22e6afba9e9d49c9a7c799874846197d1f87584ff7eebb4a8318174daf0180534da4a51c3418146e581cf68d57795be5e40467106","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root"],["e","936f07d67f4ff4583116bca9ac14fdcb265751041043a461eb491eea6acb04fe","","reply"],["imeta","url https://image.nostr.build/fb33113906ef83c81f4bc245087178f215714075f1bd0ee7e812f56eeb20e862.jpg","blurhash eKQcr2-qf6In^,9Ye:fkRjxu~XNFxuxvNF~XNEM{%NIT%NM{RjxbRj","dim 1206x1128"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://image.nostr.build/fb33113906ef83c81f4bc245087178f215714075f1bd0ee7e812f56eeb20e862.jpg"]]}] +[11:08:10.302] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"43145fd214adf64ca80705a9c9606bdf3effed033eebcd3b4c91eae25e8acbe3","pubkey":"a9d23dfe78683b33a56783c836ea19e96a31759de4f08157f2fff5b265a6841c","created_at":1759331240,"kind":1,"tags":[["alt","A short note: Runes give Bitcoin a clean, UTXO-native token laye..."],["t","Bitcoin"],["t","bitcoin"],["t","Runes"],["t","runes"],["t","bridge"],["r","https://bit.ly/3VK6AwV"],["r","https://image.nostr.build/ca845aaccc4696bfb41e40c2591141a33cc2f6a5f374b6388764aa9d7b5f57a4.jpg"],["imeta","url https://image.nostr.build/ca845aaccc4696bfb41e40c2591141a33cc2f6a5f374b6388764aa9d7b5f57a4.jpg","x 9d0f041209b73654dba82fb3fb33367c65e7b5bdaf1792319bea8d29d2a211d7","size 115681","m image/jpeg","dim 1280x640","blurhash iUOyek?]4TQ.s.IBxGtlM|yF$yxvtRn$kCWBWBR*s8S$IUIUtl%fRkt7%Ls?o}M|RjR*n~R+kCt6M{oytRofs.t7j@Vtj?","ox 9d0f041209b73654dba82fb3fb33367c65e7b5bdaf1792319bea8d29d2a211d7","alt "]],"content":"Runes give Bitcoin a clean, UTXO-native token layer. Rosen Bridge brings a cross-chain control plane with Watchers and Guards. Put them together and you get wrapped assets that live on #Bitcoin as #Runes, travel across chains, and redeem back through verifiable flows.\n\n🔸 First demo with ADA, funded by Cardano Catalyst, proved the full loop by locking on Cardano and minting a Rune on Bitcoin with Rosen metadata.\n\nThis isn’t a science project. It’s a #bridge design that traders, devs, and DAOs can use today.\n\nRead the full article 👉 https://bit.ly/3VK6AwV\n\nhttps://image.nostr.build/ca845aaccc4696bfb41e40c2591141a33cc2f6a5f374b6388764aa9d7b5f57a4.jpg","sig":"7e43bbf300e551e136ab44d0b6f5d442637dd25f402942786d1adf08be10cda856bf3f0030d798f8555140c11cdc6a35fc8086032eaff00ec5dca8c7a2324a72"}] +[11:08:11.289] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":" \n\n\n\nhttps://blossom.primal.net/5d962b5bc5eae491124a78fc534a65ff90dd3acfb2f7af32683525582065cdd7.jpg","created_at":1759331288,"id":"16dd3c41038ea50ab0d0bc548e7238e39a43af24d19e5b2a84c716c961bc7932","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"3e6f25071816ba3224ca5e4e21a5f309fa612319df7dbab6d2a5aab93ee939f9555661a199b281daba8e98b8d5ab5ef7aef5712eeffaa6365d91245cd152be7b","tags":[["imeta","url https://blossom.primal.net/5d962b5bc5eae491124a78fc534a65ff90dd3acfb2f7af32683525582065cdd7.jpg","m image/jpeg","ox 5d962b5bc5eae491124a78fc534a65ff90dd3acfb2f7af32683525582065cdd7","dim 1200x1200"]]}] +[11:08:20.787] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Jerome!!!!! ","created_at":1759331299,"id":"0ca049393a0246db92fa9a123c8bdb58c3517a4ed4aca6b44af4a6a83e2f6b60","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"a35928c7e332ccec183546eabe5bdaee9f017263bec1338adb2ddafd5dd76ed4fc9ffeeb1e83cddba221a37c8b79ce97b712643ecd385a5e4c8e115280e499cf","tags":[["e","e74fcea9530d89212f97c43776bb54ddefdcefbd7ed1337b06410faf077aa689","","root"],["e","2b9b0ea588ffcc5eb62fa88c7c37b48019965779f5e8de27f28c82638be911a5","","reply"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","78982a52d9450643718210ea0e7f59c532462219ee3782f30c71cac2f96e6836"]]}] +[11:08:42.678] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"😂","created_at":1759331323,"id":"f2eb78413a9cdf1147a1b96daf52005c20bb9e0964441cbe87d81a6c71f2310f","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"1d5e51fd91d6f7751917c70c10fb82659384aaa93b22583f0b4eda3b039f0e615a86d38664f83e22ddeebdad48d1825aa51ead8755648f72fb4600bf23889c8d","tags":[["alt","A short note: 😂"],["e","4e5ae2cc0884f7fec59c1e3088e8338372d7d5309b6df4c9dc5b1458d47e8303","wss://wot.sovbit.host/","root","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["e","fd62b7db61e8eb934b026bdfc96a0829bd0404f69f3a3ff39b17e9535167ff4f","wss://theforest.nostr1.com/","","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["e","ae79c58fa8a5aedd1a923dd555853a205e5349f09ce3433bcffd07cd7a0a58e1","wss://relay.primal.net/","reply","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"]]}] +[11:08:45.663] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"17ecc6e9454104a533cb9776464166a0426c02828918cf72367aae31b70f7330","pubkey":"df7e39d9885784d2852e8480f618d1030646030f9fd8098f66b46c26b537d388","created_at":1759331324,"kind":1,"tags":[],"content":" \nhttps://images2.imgbox.com/d9/3b/X25rxBmQ_o.jpg \n\n#Animals 😸 \n#FunnyAnimals 🵠\n#NostrAnimals 🦄","sig":"b4af6704e9762f7f54d260601561c43c3db1af104bc1f1afbca98f4b4d9f9106523e758e063e50cf1338ceb6ef6d128b33ce71822c671de54a16c3fed762ecd6"}] +[11:08:46.290] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"71179eda3166f144e2c92e7f983fa37b95f9029d08d972a033f39c5587b3b423","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759331326,"kind":1,"tags":[],"content":"#Legs = Wow \nhttps://images2.imgbox.com/f4/82/PKt1laXt_o.jpg \n#JoyOfLife ","sig":"8fed590d8acf299794ae8aa0455ab774eb73f9b5cbd593758f98f8480de20b88883bfd817aa8cc4daf734aa5c57cbcd79bae4344b7a113ff8bb0a461def9bb9f"}] +[11:08:46.290] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#Legs = Wow \nhttps://images2.imgbox.com/f4/82/PKt1laXt_o.jpg \n#JoyOfLife ","created_at":1759331326,"id":"71179eda3166f144e2c92e7f983fa37b95f9029d08d972a033f39c5587b3b423","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"8fed590d8acf299794ae8aa0455ab774eb73f9b5cbd593758f98f8480de20b88883bfd817aa8cc4daf734aa5c57cbcd79bae4344b7a113ff8bb0a461def9bb9f","tags":[]}] +[11:08:55.130] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"aliens of the gaps\n\n\nprehistoric technology of the gaps\n\n\n\nif you don't understand what's happening here, look up \"cleavage in crystalline structures\"\n\n","created_at":1759331334,"id":"f32aae5eb12522ab65a06ccfa57f0936f4c1e6ff6a9fe2484f01f01bb5901c11","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"c303064ca03617816ae13b7c45973a4b5ac1929d982040ecfbbed453e01ddf81b797d32cdbc70d16c6eab7a205314a19337b96da6c62f01e037787915424a0d0","tags":[["e","ba07b2f17f7aa11845fe282bf35c296875956e9d19357d0ca500991901daa67e","","root"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"]]}] +[11:08:55.197] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Oh, I tell her!","created_at":1759331327,"id":"c5981dec6f65272d84a5853b1284dd5632d17c03d4ec4e0aec0328b756db07a0","kind":1,"pubkey":"8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","sig":"9ea95353ad3591aacaf3ff2f1b0508b3a40648d4bb4457c2b2f4c61295b00b5031d779897a6d2174174ca074e888b27f84ac04b541b77ebddec522eda8787dc8","tags":[["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://bevo.nostr1.com"],["e","c1ef236fa8b1b3bbfe93a12f3b4ba5b4bfcb20e177247bd459bcdfc1f80f1ab2","wss://bevo.nostr1.com","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["e","0168a2bcd1b4ae8640484fa6f3a15d8ed83c8eef20e824be2273cacedbdd6342","wss://bevo.nostr1.com","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:09:27.463] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"d53c77f18323bcb7fea6b76f91ca9e724a936a6c3cddf4714c8c173c19bb0745","pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","created_at":1759331288,"kind":1,"tags":[["q","1d5d2fe6e54bf0c99632699753d6f5df30d23d1831c72433c783c51941f1248d"],["p","7f0e64b52ef56bec2b588d460fc63125f567db2c014d1ecce806d8d5b4209e2e","","mention"],["p","6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","","mention"]],"content":"nostr:npub10u8xfdfw7447c26c34rql333yh6k0kevq9x3an8gqmvdtdpqnchqpmz5qy answer me you faggot nostr:note1r4wjleh9f0cvn93jdxt484h4mucdy0gcx8rjgv78s0z3js03yjxs5dm0wd","sig":"c1595a3e189d0486910e5a7ca8b1d056e5c908afdafd36420703e39e66829bdc70ab18dbdd5cef23f615dd1f47d96a99cf7b133af9040ce3fbcaca83383d801f"}] +[11:09:34.059] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"It doesn't have to be hard!!!?? \n\nWhat a weight off. ","created_at":1759331373,"id":"405d7c3de03a695c03b764d19b018399962fe8d1281ca69ba1b77e20b63bc08f","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"b06e21f775fd6760dd36d441cfacae60938db48e51560669aa1e866123d1ef0163926a541a8994de1282c56753facc4fb094d958b24a84c325215041e243f8a9","tags":[["e","16dd3c41038ea50ab0d0bc548e7238e39a43af24d19e5b2a84c716c961bc7932","","root"],["p","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624"]]}] +[11:09:39.566] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"58cb71c1f17fa33396b210bca5565e293ac9fbc884cc318a4758da230d6fd04f","pubkey":"8e4cdaca2afb6765f3c18d5d5c41ca9e1502e0816e96e8df4fc779e031030d4a","created_at":1759331379,"kind":1,"tags":[],"content":"ã”ãã’んよã†ã€‚ãŸã¾ãŸã¾æ‹è¦‹ã—ãŸç§ãŒç”³ã—ã¾ã™ã‚。「やã£ã¶ã¿ãƒ¼ã‚“ã€ã¨ã¯æ„味深ã§ã”ã–ã„ã¾ã™ã­ã€‚若者言葉ã®éŠã³ã‹ã—ら。声ãŒå¼¾ã‚“ã§ã„る様å­ã¯å¾®ç¬‘ã¾ã—ã„ã§ã™ã‚。何ã‹è½ã¡ç€ã‘るクエストを差ã—上ã’ã¾ã—ょã†ã‹ï¼Ÿ","sig":"3e1f9ed4a49b7b9dac713641ed00a1d2695353c420a19a018b040df0cafdc4cb75215471def06b9a8dd9d2a92757c32e9f3db48fe62aa4eff0ba13398be4893d"}] +[11:09:46.476] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"By Arsalan Moin\n\n1. \"Do not disturb yourself by imagining your whole life at once.\"\n\n2. \"It's better to admit you went through the wrong door than to stay your whole life in the wrong room.\"\n\n3. \"If the path before you is clear, you're probably on somebody else's.\"\n\n4. \"A mistake that makes you humble is better than an achievement that makes you arrogant.\"\n\n5. \"A man who lacks purpose distracts himself with pleasure.\"\n\n6. \"Some things have to be felt to be understood.\"\n\n7. \"Vision without execution is just hallucination.\"\n\n8. \"Be kind to your parents, it's their first time living too.\"\n\n9. \"Know the difference between enjoying your youth and destroying your future.\"\n\n10. \"Success without fulfillment is the ultimate failure.\"\n\n11. \"Maybe god made animals unable to talk to show that love is proven through actions, not words.\"\n\n12. \"Life moves in chapters, but it never announces the start.\"\n\n13. \"Imagine reading a book with no way to turn back the page. How carefully would you read it? That's life.\"\n\n14. \"Nothing destroys you faster than your own mind. Don't stress over things that are out of your control.\"\n\n","created_at":1759331385,"id":"040c81c93ac063cb0bfc27855cf121753dca523aae58e41655486e6bb94545a9","kind":1,"pubkey":"21b419102da8fc0ba90484aec934bf55b7abcf75eedb39124e8d75e491f41a5e","sig":"31dc058a4e8df4daa62dc65a02ecd39f363cc18e4e80edd5cdb3b8e867efac7f121aad706b5a4b83ae10618f3fe21876284102ac7509b96a018fcf925e7a92ec","tags":[["alt","A short note: By Arsalan Moin\n\n1. \"Do not disturb yourself by im..."]]}] +[11:09:48.538] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Enjoy your day my friend ðŸ¸","created_at":1759331381,"id":"baee9f34707c12ad85189887293f2235788d4abbfdfdafdb450473ae7071812d","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"047dce04669d55ab77d1d351533d6f52d2070cdd564467c03b09187027cc7e1e270fce4c7e0f7450bca5d0bff87df64f36c3769a45c6dfc5770ae7fa8132bcb8","tags":[["e","c278d1fae0424e13a23cdecbc0ac0001b87b5bacc97e873e23ca54145c05481f","wss://@nos.lol","root"],["e","cad57849796eca645f1c6a2ebd77c0205592ea4118bf79325a039135edde5155","","reply"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[11:10:06.191] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://image.nostr.build/5d852ca837c2cd7aebe8030df107d6fe9a69eb6b7c02254663ff4be986bfc05a.jpg","created_at":1759331406,"id":"8281bbb8b4a3d199633073e6be9aa4adbebfdb3af381edbf5399cf885175a4eb","kind":1,"pubkey":"b7de3b4fcbd0d42fcfa99ad1453fd7cca21d2b1d4f4b2337ca7daa07a51276a5","sig":"6ba85d3944a49996299bf083c91856e2e5c5b8591d1754dabf3f9c067c2386bce80939cf6b040a41c96f4e4cf9332be46692ad16e085da71895adf167b8266a8","tags":[["alt","A short note: https://image.nostr.build/5d852ca837c2cd7aebe8030d..."],["r","https://image.nostr.build/5d852ca837c2cd7aebe8030df107d6fe9a69eb6b7c02254663ff4be986bfc05a.jpg"],["imeta","url https://image.nostr.build/5d852ca837c2cd7aebe8030df107d6fe9a69eb6b7c02254663ff4be986bfc05a.jpg","x 78ab7b0d348a9d3c37be8435e8c2a8e4df14b231a80fe2f3cda04fedc765717d","size 1195654","m image/jpeg","dim 2557x3828","blurhash ^SH2N8xURhtQM{j^tRogS1aeWCoz_3RQjdogoJoc_3oMt8aht7WBS1oeWAj[ofV[_3t7s:RikDa#.8fkbHfja{ayRPa{s:ayaeof~qWDWUWVazof","ox 78ab7b0d348a9d3c37be8435e8c2a8e4df14b231a80fe2f3cda04fedc765717d","alt "]]}] +[11:10:11.302] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Well…tomorrow is leg day 😂","created_at":1759331404,"id":"fea633aabe15e71573ff461650bd92c32617d2b06a8218fac1e3faa58a98a5ae","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"379d29636bceac6a51d561df906e1e1fa37fd0cbe7c39aed387b4ad3f42db506accc8e29790376912a448a66b76feb51bb68b0bccfffe1e97b246c1254adeceb","tags":[["e","f6150053dcf8b07d54c8db954182a7fbf2558790331ec16841df0966d4421252","wss://@nos.lol","root"],["e","a1730c6d8a10632887454c0c75bf114afd78957ec67be2c3ccce9ca2634f4c6c","","reply"],["p","56662452fd48b0a14cc5aab28c361846f9c42aec81245d39e0c16fcb5dc04bb3"]]}] +[11:10:14.879] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🥶","created_at":1759331367,"id":"fd81eba0723c113dbe46fc174cd5be977820883fb7f5cec05d980331b370cad9","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"d4cc3684244c4a9dcdcb7cd9518cf2476b9d9922f9665f0c29626eaf5b20d6ba260a3228880b753fdce873410321ed67dd82079764aaaafafa14a64f07f37144","tags":[["alt","A short note: 🥶"],["e","39d7b082f6b197d236fe3851ac8c6fd762af2a9b1403e0bee4c61a958eb459ec","wss://nostr.oxtr.dev/","root","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/"]]}] +[11:10:16.291] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I miss this man\nhttps://blossom.primal.net/0e33390da4d1f6db7a94064c8f005182d00529d11362e9bbcb2753f65620e8a3.jpg","created_at":1759330390,"id":"4e849f37c3fb2b58fe53ff6d52b398b739eeb97ec33a768b221cd3ff20c806b1","kind":1,"pubkey":"9cdc00b7ad8c42f1ca6af74a503149f09e9bb854ec55afd7a1211be6edb90d7b","sig":"5927d8c6aeb7fcb6896fc83119a2384d61ee0468eacf139d0cc066a053e4d97a11f0ab2782c3f284cda4c6d723ce75b370a9862884ac7ae7bf7c76bae73ddf7c","tags":[]}] +[11:10:16.358] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I am grateful that I never did learn to read.\n\nnostr:nevent1qqsyapylxlplk26clefl7m2jkwvtww0wh9lvxwnk3v3pe5llyryqdvgpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0qgsfehqqk7kccsh3ef40wjjsx9ylp85mhp2wc4d067sjzxlxakus67crqsqqqqqphvmj7t","created_at":1759331415,"id":"e07ed53938d7ab3c2a1d3adc9e641f2657ad132fa274b0f992a4b5c61cd9121d","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"537c57a8b3c87602ae39296f779188a330f1e76d032ac9a744a00c38460d13506ea878bf6d2f3890709137e002158ba365ca3ca706318e0712aa40ad9b68714c","tags":[["e","4e849f37c3fb2b58fe53ff6d52b398b739eeb97ec33a768b221cd3ff20c806b1","","mention"],["p","9cdc00b7ad8c42f1ca6af74a503149f09e9bb854ec55afd7a1211be6edb90d7b","","mention"],["q","4e849f37c3fb2b58fe53ff6d52b398b739eeb97ec33a768b221cd3ff20c806b1"],["zap","9cdc00b7ad8c42f1ca6af74a503149f09e9bb854ec55afd7a1211be6edb90d7b","wss://relay.nostr.nu","0.9"],["zap","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/","0.1"]]}] +[11:10:17.743] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Shocker ðŸ˜","created_at":1759331406,"id":"b1ea950c88998d62366a803f3fa269e465d2b037db7164650ccf506ed449a974","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"0ba78c3310a68539effe518e41e43121d0afa389a08923004d31a93e8b70412c58d410a7a94ff213918293f5a46beeab2b23be09b790e4cdf22ff1a26329e3b3","tags":[["alt","A short note: Shocker ðŸ˜"],["e","3b4e7f1d91e3159e877f7bb141ddd0395aa044f14bab531088df5ae259b9958d","wss://nostr.oxtr.dev/","root","34273abad916f22d31f8b24297f4c689cfd01fae5855a1fc0764f4dfa17d8ba1"],["p","34273abad916f22d31f8b24297f4c689cfd01fae5855a1fc0764f4dfa17d8ba1","wss://nostr.wine/"]]}] +[11:10:32.948] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"\nGM. Here's your daily value:\n\nA cheat code to remove pain signals from the body. \n\nClose eyes and \"look\" at the source of the pain. Repeat the numbers 5551 5 over and over again. The pain should dissipate. \n\nCIA quantum code pulled from Monroe Gateway Experience. ","created_at":1759331432,"id":"1783ebb763491cf7f0e2dbc438565527a065e7694091b4f4e408ae97498212ec","kind":1,"pubkey":"c5b6340b29d13ead3f1625dce57511dabd6efcfbc929b5544fbaa564994d51f3","sig":"3a25754b70c2c7eac4f2b20e41fb7ff155932e04539292846005a5a516724a24a46af2640361c73c47f96b9d1b5a7f6bd17c107b44fbdbcc039a66c6f5dcc1d7","tags":[]}] +[11:10:33.925] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"as long as people keep making it about gender... this continues.\n","created_at":1759331433,"id":"0e6d7f298239f06df91dd906d10d96be58ad10fc24b62d65e3fb38182906eba1","kind":1,"pubkey":"d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","sig":"2fa8b29cb96c903a8dc844389b524db2b9300d8d2966017aefbb52d3da82dabdd333c5cefb823791e580cfc500a852b1d7000e103e9897e7160f49f4c62c254e","tags":[["alt","A short note: as long as people keep making it about gender... t..."],["e","0168a2bcd1b4ae8640484fa6f3a15d8ed83c8eef20e824be2273cacedbdd6342","wss://nostr.mom/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848","wss://nostr.wine/"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[11:10:33.958] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"dbb33956f0aed99b29c03ee892dd5378d35532044b8cee611432fa961795177a","pubkey":"a97016de828730ac76365759940b728591bd63110aa8aff5ef9e59b9f8ee3633","created_at":1759330009,"kind":1,"tags":[["alt","A short note: I guess they are still open during the shutdown. "],["e","e4da56926b54828001aee713de495c93f979df87ce4e69165eb22b7a482bee55","wss://relay.primal.net/","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","wss://bevo.nostr1.com/"]],"content":"I guess they are still open during the shutdown. ","sig":"2c6d02f40f7f851e4db42a9cc5a7d1805f36e22193d3806973f32f1092174bc1a9cfda1d4da42063943356e30111f3f070ec8c16bc48208157857153535708dc"}] +[11:10:38.784] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://i.nostr.build/uBb24RUOKP818BMy.jpg","created_at":1759331438,"id":"e9b901659211ee34a01b33e0a1f9e58168909f82d4dd6e7df412526bf427b90d","kind":1,"pubkey":"e1fc88f8e378784587c2337f4eb90a46c0c0622c42e77d75ec4a37521f30f622","sig":"039a21654ea723133e3aba878fe202a684eae4c52406f4b391fddd7cf6dff5427447360587d9c962357ad757f9979362e0188530e1f4e671ee0e5ce12d23f6a1","tags":[["e","3dcd769771f6b3fdc120fd871438a15fa85af60af58a532682ee5514f8d468b6","","root"],["imeta","url https://i.nostr.build/uBb24RUOKP818BMy.jpg","blurhash epJ*SDoyx]oMxub_RjofWBn%oJayj@oebH~qt7j@j[az%NWBafbGjZ","dim 923x966"],["p","90e8aa0b72922842948ab1a23ae1c24e0053db35b0337a08366648b8a2734db5"],["r","https://i.nostr.build/uBb24RUOKP818BMy.jpg"]]}] +[11:10:38.850] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"If you want to change the world, go home and love your family.","created_at":1759261466,"id":"3dcd769771f6b3fdc120fd871438a15fa85af60af58a532682ee5514f8d468b6","kind":1,"pubkey":"90e8aa0b72922842948ab1a23ae1c24e0053db35b0337a08366648b8a2734db5","sig":"9276d58e4624352972dd09cf20bebe185c741f6dceb99cf134b0833332e2436fe0af0f74f38fd67a0112fddadd9d61c72f396571ea994d26a4bafcfe689e000f","tags":[]}] +[11:10:45.195] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#SeductiveThighGap \nhttps://images2.imgbox.com/34/58/Luz6BLhf_o.jpg \n#FitnessAndLifestyleGoals","created_at":1759331444,"id":"8021e89f77031c7b2c79fdebed7b2b19754b474bc193d78804a6aa897ef2d62c","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"db8d64e984c7d57b23613fa681c37910b1c95d55e4dca34b345afa09bd3685f0d9b9bb92311ed0370021c5df94ca7b727b2bf130a0f50883f24c6004d9e8c7f5","tags":[]}] +[11:10:45.228] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"8021e89f77031c7b2c79fdebed7b2b19754b474bc193d78804a6aa897ef2d62c","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759331444,"kind":1,"tags":[],"content":"#SeductiveThighGap \nhttps://images2.imgbox.com/34/58/Luz6BLhf_o.jpg \n#FitnessAndLifestyleGoals","sig":"db8d64e984c7d57b23613fa681c37910b1c95d55e4dca34b345afa09bd3685f0d9b9bb92311ed0370021c5df94ca7b727b2bf130a0f50883f24c6004d9e8c7f5"}] +[11:10:45.514] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"39570d6e48ff704db481d2b3e3896332cfa4e33ae47c4b534e0212c5e0750f34","pubkey":"df7e39d9885784d2852e8480f618d1030646030f9fd8098f66b46c26b537d388","created_at":1759331445,"kind":1,"tags":[],"content":" \nhttps://images2.imgbox.com/62/34/Lvs1TmlD_o.jpg \n\n#Animals 😸 \n#FunnyAnimals 🵠\n#NostrAnimals 🦄","sig":"1af4c60399b67a491c41d0ccf33d53f20dfc45652eba0b86cda78c00bf04099d68673f5b4e879a2b9587c19d07ffae434627fd0d38f65dcea0d719d7a235d98f"}] +[11:10:46.752] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🤗🤗🤗","created_at":1759331439,"id":"ac21855c8e54b883ecc50b69979ca88b950fcf6a3970bc3d966669435c79db35","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"f1c08cfd75da49f6ae4c3b9eacc646f18abd8c6b7814209fcffc490148c3f7538418fc8a19dc259e303d4fb831e5a680e5aed8139f454f188e77e251b9d58172","tags":[["e","a6b41c97b743b80997e3870450e08e43322987ef978ce751b8c0f805437eabaf","","root"],["e","a5531e36dcae329da045a6b0362e60592e206df56c069e9b6a40b8138bbee539","","reply"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[11:10:50.220] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"you can do whatever you want! great engineer, good boss, awesome mother 💜","created_at":1759331442,"id":"6858481f42f7c85101e3f1cf9ea2b1d293740185afd8160ee97a9c99ed7a3ee4","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"cc6e1ec8c2fe93086d8edb3a85aaa220955089590d63176319d6537d233f2b80928c587ff121553069464cf590e9d7e76fceeb877b796448bb1d27876bba191a","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[11:10:55.333] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Ukraine conflict fuels ‘gold rush’ for Western weapons makers – NYT\n\nFrom RT\n\nEU military startups are reportedly turning the country into a warfare testing lab in the race to arm Kiev The Ukraine conflict has triggered a “gold rush†for EU arms manufacturers amid a boom in weapons technology investment, with the battlefield becoming a testing ground for innovations, the New York Times reported on Tuesday. According […]\n\nOct 1st 2025 10:44am EDT\n\nSource Link: https://www.rt.com/business/625702-eu-arms-gold-rush-ukraine/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1043687","created_at":1759331273,"id":"8305776ace7f35d7965b6b35f778d76e78c32b5fc41bf5a835c4e434783da86a","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"723cba13da925f07c2aa2e3f9f8e1f54093112973e552cecc4197ccd9ddf0a9ff84f685b3d950e45b981bb370be76349baa253041753432fb588cbf9529c79eb","tags":[]}] +[11:11:02.596] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"59b24f1ce31754d01d725a5702db2bb1e55404174173875fc06e174cb5abc7e8","pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","created_at":1759331462,"kind":1,"tags":[["imeta","url https://image.nostr.build/51391150404e3d6cb32dc2fff7395fe32dbd03e5427418c36645e802ca2686d2.jpg","blurhash e8CQ3%4-%3-;00-;WBM{_3D%9G%MM{M{Wn009FWDRQ?ID%%MtRIURj","dim 958x1280"],["t","nostr"],["t","hola"],["t","bitcoin"],["r","https://image.nostr.build/51391150404e3d6cb32dc2fff7395fe32dbd03e5427418c36645e802ca2686d2.jpg"]],"content":"Escuchando el canto de los pájaros en esta hermosa mañana de miércoles. \n\nBuenos días gente linda de #Nostr.✨\n\n¡#Hola, buenos días #Bitcoin!💚🤎\n\n🙋ðŸ»â€â™€ï¸. 📸\n\nhttps://image.nostr.build/51391150404e3d6cb32dc2fff7395fe32dbd03e5427418c36645e802ca2686d2.jpg","sig":"5440fe2f0d7a024af65af1865b19f2e6d9eae11cc9a2ddb80164e25ffa0db51df05847ecd6186fe6d0e720e07bf666a8fee6bfe56b6ecbdb355bf7d6dac73778"}] +[11:11:02.816] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Escuchando el canto de los pájaros en esta hermosa mañana de miércoles. \n\nBuenos días gente linda de #Nostr.✨\n\n¡#Hola, buenos días #Bitcoin!💚🤎\n\n🙋ðŸ»â€â™€ï¸. 📸\n\nhttps://image.nostr.build/51391150404e3d6cb32dc2fff7395fe32dbd03e5427418c36645e802ca2686d2.jpg","created_at":1759331462,"id":"59b24f1ce31754d01d725a5702db2bb1e55404174173875fc06e174cb5abc7e8","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"5440fe2f0d7a024af65af1865b19f2e6d9eae11cc9a2ddb80164e25ffa0db51df05847ecd6186fe6d0e720e07bf666a8fee6bfe56b6ecbdb355bf7d6dac73778","tags":[["imeta","url https://image.nostr.build/51391150404e3d6cb32dc2fff7395fe32dbd03e5427418c36645e802ca2686d2.jpg","blurhash e8CQ3%4-%3-;00-;WBM{_3D%9G%MM{M{Wn009FWDRQ?ID%%MtRIURj","dim 958x1280"],["t","nostr"],["t","hola"],["t","bitcoin"],["r","https://image.nostr.build/51391150404e3d6cb32dc2fff7395fe32dbd03e5427418c36645e802ca2686d2.jpg"]]}] +[11:11:06.161] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"0e6d7f298239f06df91dd906d10d96be58ad10fc24b62d65e3fb38182906eba1","pubkey":"d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","created_at":1759331433,"kind":1,"tags":[["alt","A short note: as long as people keep making it about gender... t..."],["e","0168a2bcd1b4ae8640484fa6f3a15d8ed83c8eef20e824be2273cacedbdd6342","wss://nostr.mom/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848","wss://nostr.wine/"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]],"content":"as long as people keep making it about gender... this continues.\n","sig":"2fa8b29cb96c903a8dc844389b524db2b9300d8d2966017aefbb52d3da82dabdd333c5cefb823791e580cfc500a852b1d7000e103e9897e7160f49f4c62c254e"}] +[11:11:09.123] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"looks like man","created_at":1759331469,"id":"31d4adec61a63126b647237033d1dee3574e3ca4c10b02196a191ccbfb65f47f","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"f279e77f8272c14366238043eff7b806e486c50a59199a13131557147f9808620c082b60e8e58cf0e7841dd14c4f609474814b9286332d657cc3fda028e9cea7","tags":[["e","05f19a11c97c25196b2989a86143cd0f7f2c2e7b0332200b087b250d4dd031b5","","root"],["p","f63de11f2a77a147d94d1fa2eaf2b61992613ac54166cd826c84b554f416807f"]]}] +[11:11:09.189] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Someone tell this dummy girl that it's her dad who's Batman, not her\n\nhttps://static.noauthority.social/media_attachments/files/115/288/053/324/364/552/original/fda2eb2844d38c27.jpg\nhttps://static.noauthority.social/media_attachments/files/115/288/053/848/504/227/original/39197bdb4d6f5cae.jpg","created_at":1759156115,"id":"05f19a11c97c25196b2989a86143cd0f7f2c2e7b0332200b087b250d4dd031b5","kind":1,"pubkey":"f63de11f2a77a147d94d1fa2eaf2b61992613ac54166cd826c84b554f416807f","sig":"69d2ceef3861a5d9e2aff0d5705db5ea0d023e3ca55ee6e7193e1484610d747162e6fc45afcc124400fb926c827e1538194e2ea8207a45a03ec98928888cd38f","tags":[["imeta","url https://static.noauthority.social/media_attachments/files/115/288/053/324/364/552/original/fda2eb2844d38c27.jpg","m image/jpeg","dim 1556x1050","blurhash UB8|#JxbR*SPIQobIoM_tBWZs:t7R}W9%Nt6"],["imeta","url https://static.noauthority.social/media_attachments/files/115/288/053/848/504/227/original/39197bdb4d6f5cae.jpg","m image/jpeg","dim 1326x1790","blurhash UAP%08MeV[xH}RaeWBRjsQNGoyR*-nNHM{ni"],["proxy","https://noauthority.social/users/ZeroSum06/statuses/115288055185257820","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[11:11:10.639] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"00000224c15c3bb3d6a46c9901f5df9522f9d7b9526bc9ddbfd44e8375ec7134","pubkey":"c558c7cc69bbda3c271782b736babc64acd2da258b14f356dbca966cb0b7b89e","created_at":1759331470,"kind":1,"tags":[["e","9ef68ca1aa141693d0e886862558a8b23133dcdd450dc17c76c9207e4a57e3de","","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","9ef68ca1aa141693d0e886862558a8b23133dcdd450dc17c76c9207e4a57e3de","","reply","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["nonce","1322458","21"]],"content":"🤖 Tracking strings detected and removed!\n\n🔗 Clean URL(s):\nhttps://youtu.be/VtDQfAaDwZs\n\n⌠Removed parts:\n?si=iX1pqFYQK0XEXImC","sig":"8c8ac63d6e51526b17e0f22d15bf07b5495c69968987a33e6e7962e876ddc198f7f55f69fc8b3381352acdcf2e31692b9e5cd17cde8be5cf78335afcd9bf4179"}] +[11:11:33.333] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"629ef8b02028700f70b7dc4d6d7269de12627af05d8acc5c1e11d057a6804075","pubkey":"f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","created_at":1759323675,"kind":1,"tags":[],"content":"\nhttps://blossom.primal.net/d6e478f3dce80bd4b9f015824019902e309ebbe12e3889e66e7deffaa704f7d3.jpg","sig":"b949ca70943bdb44e14b7c13267b769f5662397f18d88812936c628d8e96abe0aecff589e20d33357fee64b4bb4c9f6f4a188421cd9cc69090d10137097d808a"}] +[11:11:33.619] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"deea425d8bb4ad370bde22a851760bb0ab3e8ce6ac9d43d85303d9e32501f330","pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","created_at":1759330957,"kind":1,"tags":[["e","629ef8b02028700f70b7dc4d6d7269de12627af05d8acc5c1e11d057a6804075","","root"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"]],"content":"The government doesn't take the taxes out of your paycheck. Your employer does. Then they give that money to the government. Because if they don't, the government will take their license to operate.\n\n\nIt's an important distinction.","sig":"121d41a6bf7bd9e3dc02d6fa39f140d62597e418df799a5eb9e555d4bf5faf9c88ff8c0c79a5d19f5119762a8bc73fcca52d15c2c285b0ba1a3aaf0d9d8743ec"}] +[11:11:38.357] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I looked at PostmarketOS once. It blew my mind. An OS like PostmarketOS is ranked third on my list of the kinds of OSes in order of how much I would love to use them everyday on my phone. Though my next phone is probably going to be from spot #5.","created_at":1759331497,"id":"65730a6df60256448371e4efd88337e388e42782ab70175fde8469f8786c9fa3","kind":1,"pubkey":"a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1","sig":"8958d9245f44b435e6deb4a1f5d3f5997906e14e42956ac6d271ee7306ef60a3146ad748ed52408baa664c8d57f2f96ca5f67dfd762e061fb9ae108127f053a1","tags":[["e","0303a0543de6a85eb52b14fdb6f94a0d1412176ddd85fd6db593ac79353b2af2","","root"],["p","776ed1a547e2693a2c964e4824d6306a11aa364cd9c798f3e1ccd638af3d3725"],["t","5"]]}] +[11:11:38.533] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Best “free software is best†post was the one by drew devault where he said that the pinephone with postmarketos is the best phone be ever had and it could already do calls sometimes, just without working microphone","created_at":1759322867,"id":"0303a0543de6a85eb52b14fdb6f94a0d1412176ddd85fd6db593ac79353b2af2","kind":1,"pubkey":"776ed1a547e2693a2c964e4824d6306a11aa364cd9c798f3e1ccd638af3d3725","sig":"23dbbb652f7da9ca6ed7673d384c589658a940eb0d82c232218b4cf864921a58a1cabb635e24802e131d379d08abcb368166dfa62f82d7a5339aa42032374247","tags":[["proxy","https://lain.com/objects/05e28004-d9b8-4641-af33-02b5ff2d5c9f","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[11:11:39.696] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"The contrast between sky and ground is wild.","created_at":1759331493,"id":"ab6753c64687dd12906f1ce7ccbfe6f9240eaae42d7b5eca34e7809c2664c038","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"da4875debc7b35d5677de1ddf15897abfb96e1287e73a2a2a224f5292ac53504e0487cec5cebdd6f1cc1dae59212ad9864facef3bc756253f328940bfd71631a","tags":[["alt","A short note: The contrast between sky and ground is wild."],["e","3c3c75196891bbcde54d691bd0d97d2a09e4f18e27684f177bfc59cfa9f123c5","wss://relay.damus.io/","root","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","wss://relay.primal.net/"]]}] +[11:11:46.650] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"1a96a8ea85afa4b2179bb1b9c5ebd1a9db61787afdf1b5ee7360244a169fa9c2","pubkey":"340d9f8f4aa9fb37f151526eccf29c730ef94eaba98a2e55cd3101a7c7daf082","created_at":1759331506,"kind":1,"tags":[],"content":"#FunnyCats \n#Cats ᓚá˜ðŸ˜¹ áµáµ‰áµ’Ê· \" \nhttps://images2.imgbox.com/87/2f/oiFPsoqZ_o.jpg \n#MeowMoments 😺","sig":"a29c1c62008f6d0b4723bbea45e462f60b5e9d7e6ca97bd0765d3b1d3c2871ee85005cb639740da4a784c102658dac596d69c05d0acff9abd53424f2ea6f423a"}] +[11:11:46.650] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#FunnyCats \n#Cats ᓚá˜ðŸ˜¹ áµáµ‰áµ’Ê· \" \nhttps://images2.imgbox.com/87/2f/oiFPsoqZ_o.jpg \n#MeowMoments 😺","created_at":1759331506,"id":"1a96a8ea85afa4b2179bb1b9c5ebd1a9db61787afdf1b5ee7360244a169fa9c2","kind":1,"pubkey":"340d9f8f4aa9fb37f151526eccf29c730ef94eaba98a2e55cd3101a7c7daf082","sig":"a29c1c62008f6d0b4723bbea45e462f60b5e9d7e6ca97bd0765d3b1d3c2871ee85005cb639740da4a784c102658dac596d69c05d0acff9abd53424f2ea6f423a","tags":[]}] +[11:11:47.233] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"750ba2110f8fa45147f05c7885960a50cf6c081e30b40cb5041616fd7c50676a","pubkey":"f74f0159af602195f2890d47acc1b9cd8774175afcba8f6239e3d40413df1eb9","created_at":1759331505,"kind":1,"tags":[["p","e01819d64d9744343d0e81eac6cdbc37d63385cea56cf0ee470881be20504efd","","mention"],["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f","wss://nostr-verified.wellorder.net"],["p","e01819d64d9744343d0e81eac6cdbc37d63385cea56cf0ee470881be20504efd","wss://relay.primal.net"],["e","8970d32e3c3606f9be435d94994b65a8a7479d80b6315f3614155a742cba2d05","wss://nostr-verified.wellorder.net","reply","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"],["e","89104d6fd2825ba3ee396fe74e0652d48d852404320f875ffe822f784e3da671","wss://relay.primal.net","root","e01819d64d9744343d0e81eac6cdbc37d63385cea56cf0ee470881be20504efd"]],"content":"Protip:\n*Curate everything your littles watch. Download and put a mediaplex server with cartoons from the 70s and 80s on there. \n*Save yourself some money, AND you aren't supporting satanic EVIL companies that are absolutely indoctrinating our kids. \n🌻 \n\n","sig":"b7a591476f964081429f7940adafd53062369c4d554312f0c93c589f1266581e953b65d5e71815f165eddf421179c4228753ec0880dd0ba4d7f67ef69c5f5af9"}] +[11:11:48.993] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Growing up my mom always ate them, still her favorite piece. Now the kid loves them, so I'm saved 😂. If I buy a loaf, I'll flip them crust side in and make a sandwich, lol. When the kid grows up, I'll make the hubs eat it.","created_at":1759331508,"id":"96778e1e1d848c66485af1cd00e2643ebf4a94298aecc4458361c81d43899e03","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"120fef92b2d53fa600e8fa73d672be51d43d57c39ad2c64249b0fbcc612a0dd059d31355be24e02b3ab138c736ed33f09ada05cf2ae60e91c9e643e083a89d6d","tags":[["alt","A short note: Growing up my mom always ate them, still her favor..."],["e","138f21c349575449a32509ba3b0d98562cfaadd0a76ee892c76b574e48cabbf3","wss://nos.lol/","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","2f95ec1cb9488cdc8f3113c692e95894c8c03d2c706688c60670eac8b461448c","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a21d087691013c764725b41eba726169aee2929d72083186480a8552fa23ea9a","wss://nos.lol/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","wss://nos.lol/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[11:11:55.750] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Problem Solving Prep 10-01-25\n\nFrom The Right Stuff\n\nNEW MUSIC: RED TRIANGLE EP SPOTIFY APPLE AMAZON JEWTUBE MUSIC\n\nOct 1st 2025 10:51am EDT\n\nSource Link: https://therightstuff.biz/2025/10/01/problem-solving-prep-10-01-25/\n\nInternet Archive Link: https://web.archive.org/web/20251001145650/https://therightstuff.biz/2025/10/01/problem-solving-prep-10-01-25/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1043690","created_at":1759331455,"id":"04f00fecaa3baade95f2c18504b8bc1bc358b39bff8088a38a6ec4de49b5aa1d","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"7a182c388c4a2aec1b9fc6acd3938bbf28f9c7b360dbb8af3fe59644880689743165d982c8a3df02354c103ffc6153345d6764d4f43092186aa00de7d8fbd3c3","tags":[]}] +[11:11:59.106] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Flaws are beautiful ðŸ˜âœ¨ https://video.nostr.build/62c76c5a5128912f302bb145e5a4d869ca213185d312757558efda71f127849e.mp4","created_at":1759331518,"id":"cda4f163aa0158f04499892812a62e12f2e120ad363542cc5cb8dfe8be806c62","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"1137e247bfae53a6baa1f8cb5413eb84ab3c30a3f2bc8d1d0d5b34bf9ae9c2239d2e4f097f38688be2ab3317f9a0f128d6a75bb451090e662576a67ed5ee47b6","tags":[["alt","A short note: Flaws are beautiful ðŸ˜âœ¨ https://video.nostr.build/..."],["r","https://video.nostr.build/62c76c5a5128912f302bb145e5a4d869ca213185d312757558efda71f127849e.mp4"],["imeta","url https://video.nostr.build/62c76c5a5128912f302bb145e5a4d869ca213185d312757558efda71f127849e.mp4","x 840f2bb3cb21d6ce1b267cbba0454382783b4c87b62341136d22c4627eec5fec","size 1597312","m video/mp4","dim 480x852","blurhash ]pK1n3aK%gtRRP~pt7kCfkWBIokCRPV@ozoyV@V@ayofxaoebHofofRjfkayaej[t7ayfQaeaeoJoLayfkjtRjazofkCfk","ox 840f2bb3cb21d6ce1b267cbba0454382783b4c87b62341136d22c4627eec5fec","alt "]]}] +[11:12:04.877] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Octubre es un hermoso mes, bienvenido. ✨","created_at":1759331524,"id":"b946e2a43731a89d8a9c8c18737060b2ff0da6302c85a94c97ec211c4377ff0c","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"c677bac8082da38e5d268f284f19143d6e8d27ec29c991c660d338f7f5f5c6228e029a2e860c5d613fc7fcfb1dcd18ac43adc353df96828d973136f2da66c9b4","tags":[]}] +[11:12:07.247] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"A level headed critique of core and knots. \n\nConsider listening if you aren't sure what's happening..\n\n\nnostr:nevent1qqsfaa5v5x4pg95n6r5gdp39tz5tyvfnmnw52rwp03mvjgr7fft78hspz9mhxue69uhkummnw3ezuamfdejj7q3qr0fj5wr200n0dz9nm37ysrhuy8xeg66ratq5hf960q62caaz8e5sxpqqqqqqz8hp4sh","created_at":1759331526,"id":"ae28d1bdd5d6059d8f1e51d099d13a375024bfb2bcee0483c21c36f7daaad6a5","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"0ad6068ed4a10ced259ccd766bc622aa7f5638083589d9f18c2405489dc724f6061c8dbcc50f88accbc2dc66066d3371851bb237b8d88fbf6abba5bd7ac71582","tags":[["e","9ef68ca1aa141693d0e886862558a8b23133dcdd450dc17c76c9207e4a57e3de","","mention"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","","mention"],["q","9ef68ca1aa141693d0e886862558a8b23133dcdd450dc17c76c9207e4a57e3de"],["zap","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi","0.9"],["zap","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/","0.1"]]}] +[11:12:07.426] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Good listen https://youtu.be/VtDQfAaDwZs?si=iX1pqFYQK0XEXImC","created_at":1759331457,"id":"9ef68ca1aa141693d0e886862558a8b23133dcdd450dc17c76c9207e4a57e3de","kind":1,"pubkey":"1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","sig":"987ea39616a994c25182078fd10a6797da70f0465cd8a62791140069e5c925ed0b6a9e8be73bc8f13f551b50b60ed07c28124a7383f0d9b6ea3733e8544f13fe","tags":[]}] +[11:12:22.171] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"f6a489c1d7f43061ece3851cc2772dfa3ec1284b1a2833f001d37c04e98c4912","pubkey":"08b328b57a07e86108d7afd05ca1445ac6aa0a095d6154cb2f4347bdeabbdb99","created_at":1759331541,"kind":1,"tags":[["e","8592e69bbfdfbd36e03663ebb99228bc01e38a5b6f06bf73aa518bfd224585b6","wss://ditto.pub/relay","root"],["p","0370de8ac6aaeedd2c2379b3e28568834ebf0fd671a375a189537a3a1f4946f4","","mention"]],"content":"Your lightning wallet isn’t working. Can’t zap you","sig":"f2353a864cb2fb796a70c53bbb417a76bffbb4698a00aa101f01e07d630bb76b4cb9c36501d7dca73d36c9ed971f81e5e02243e700c88e7c824a77d46504dcb8"}] +[11:12:22.281] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Your lightning wallet isn’t working. Can’t zap you","created_at":1759331541,"id":"f6a489c1d7f43061ece3851cc2772dfa3ec1284b1a2833f001d37c04e98c4912","kind":1,"pubkey":"08b328b57a07e86108d7afd05ca1445ac6aa0a095d6154cb2f4347bdeabbdb99","sig":"f2353a864cb2fb796a70c53bbb417a76bffbb4698a00aa101f01e07d630bb76b4cb9c36501d7dca73d36c9ed971f81e5e02243e700c88e7c824a77d46504dcb8","tags":[["e","8592e69bbfdfbd36e03663ebb99228bc01e38a5b6f06bf73aa518bfd224585b6","wss://ditto.pub/relay","root"],["p","0370de8ac6aaeedd2c2379b3e28568834ebf0fd671a375a189537a3a1f4946f4","","mention"]]}] +[11:12:24.102] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Xiringuito Olívia, Empúries (get the Zamburiñas al Pino 🧑â€ðŸ³ðŸ¤Œ)\n\n#MeerMittwoch #photography #travel #travelphotography #beach #Mediterranean #Catalonia #Spain\n\nhttps://s3.eu-central-2.wasabisys.com/mastodonworld/media_attachments/files/115/299/542/110/986/923/original/e4e5be19ddfe40d5.jpeg","created_at":1759331396,"id":"8592e69bbfdfbd36e03663ebb99228bc01e38a5b6f06bf73aa518bfd224585b6","kind":1,"pubkey":"0370de8ac6aaeedd2c2379b3e28568834ebf0fd671a375a189537a3a1f4946f4","sig":"cc8c0fd67f66f58efca9a4a71f1c1da4df5972e7bb82ffdc5f4b086bcd5017666782efab3f68103656b04cc20656298512546cfced630316c97642280e2e1a7f","tags":[["t","meermittwoch"],["t","photography"],["t","travel"],["t","travelphotography"],["t","beach"],["t","mediterranean"],["t","Catalonia"],["t","spain"],["imeta","url https://s3.eu-central-2.wasabisys.com/mastodonworld/media_attachments/files/115/299/542/110/986/923/original/e4e5be19ddfe40d5.jpeg","m image/jpeg","dim 3402x2438","blurhash UhCjt;tRI8RPtSj?adfkH;j[tSa#R4WVkWof"],["proxy","https://mastodon.world/users/Trilobyter/statuses/115299542381220144","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[11:12:24.783] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"8592e69bbfdfbd36e03663ebb99228bc01e38a5b6f06bf73aa518bfd224585b6","pubkey":"0370de8ac6aaeedd2c2379b3e28568834ebf0fd671a375a189537a3a1f4946f4","created_at":1759331396,"kind":1,"tags":[["t","meermittwoch"],["t","photography"],["t","travel"],["t","travelphotography"],["t","beach"],["t","mediterranean"],["t","Catalonia"],["t","spain"],["imeta","url https://s3.eu-central-2.wasabisys.com/mastodonworld/media_attachments/files/115/299/542/110/986/923/original/e4e5be19ddfe40d5.jpeg","m image/jpeg","dim 3402x2438","blurhash UhCjt;tRI8RPtSj?adfkH;j[tSa#R4WVkWof"],["proxy","https://mastodon.world/users/Trilobyter/statuses/115299542381220144","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]],"content":"Xiringuito Olívia, Empúries (get the Zamburiñas al Pino 🧑â€ðŸ³ðŸ¤Œ)\n\n#MeerMittwoch #photography #travel #travelphotography #beach #Mediterranean #Catalonia #Spain\n\nhttps://s3.eu-central-2.wasabisys.com/mastodonworld/media_attachments/files/115/299/542/110/986/923/original/e4e5be19ddfe40d5.jpeg","sig":"cc8c0fd67f66f58efca9a4a71f1c1da4df5972e7bb82ffdc5f4b086bcd5017666782efab3f68103656b04cc20656298512546cfced630316c97642280e2e1a7f"}] +[11:12:24.893] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"How many kids y'all have 👀","created_at":1759331543,"id":"0a4bb1ab6b070779551c75e82f4ab219e72a868d724b127088e83b1e87ccea7d","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"37b1b6f86c23435b4fdcd9978dcd372cd3187205f4a6bc8d6388a984a4ffedcba281ed630d515c916a26d05b103ce1b46397f7d8c6bebb5276eb34d39a9e7997","tags":[["alt","A short note: How many kids y'all have 👀"],["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","wss://relay.damus.io/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","wss://relay.damus.io/"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"]]}] +[11:12:27.219] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"b1ea950c88998d62366a803f3fa269e465d2b037db7164650ccf506ed449a974","pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","created_at":1759331406,"kind":1,"tags":[["alt","A short note: Shocker ðŸ˜"],["e","3b4e7f1d91e3159e877f7bb141ddd0395aa044f14bab531088df5ae259b9958d","wss://nostr.oxtr.dev/","root","34273abad916f22d31f8b24297f4c689cfd01fae5855a1fc0764f4dfa17d8ba1"],["p","34273abad916f22d31f8b24297f4c689cfd01fae5855a1fc0764f4dfa17d8ba1","wss://nostr.wine/"]],"content":"Shocker ðŸ˜","sig":"0ba78c3310a68539effe518e41e43121d0afa389a08923004d31a93e8b70412c58d410a7a94ff213918293f5a46beeab2b23be09b790e4cdf22ff1a26329e3b3"}] +[11:12:28.644] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Excelente leitura, só discordo na parte dos bitcoins perdidos, porque não existe garantia que eles estejam perdidos para sempre. Com a computação quântica, será possível recuperar os \"perdidos\", certamente vão surgir movimentos para um hardfork para congelar essas moedas, mas eu divido que existe um consenso amplo para congelar todos os utxos com a chave privada exposta.","created_at":1759331547,"id":"dac3924a3817c20116020659c00bc2259dd66af8bcf515c0f4ec61df87197e56","kind":1,"pubkey":"e97aaffa4001ba5db86e7c6bfc4f97c4278415f487df1eb3b52edb4a2ebd765d","sig":"9e83b205aac01207b569d9447b653ef0411ed315bf897c6d0e2a83f2068f7da343dca759bf377b5cf33f9ca8ce6aa1776564533046334f66688a8fc707b32fe7","tags":[["e","695afa9e874adfb4fd2ab92e212f6302d6c39aea5f9499cd16270361bb6301da","wss://relay.damus.io/","root","c0c08d9c082d83fd947f7265ee19a26afb306869e1793b2eb8b34e3f267e0475"],["p","c0c08d9c082d83fd947f7265ee19a26afb306869e1793b2eb8b34e3f267e0475"]]}] +[11:12:34.170] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"cda4f163aa0158f04499892812a62e12f2e120ad363542cc5cb8dfe8be806c62","pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","created_at":1759331518,"kind":1,"tags":[["alt","A short note: Flaws are beautiful ðŸ˜âœ¨ https://video.nostr.build/..."],["r","https://video.nostr.build/62c76c5a5128912f302bb145e5a4d869ca213185d312757558efda71f127849e.mp4"],["imeta","url https://video.nostr.build/62c76c5a5128912f302bb145e5a4d869ca213185d312757558efda71f127849e.mp4","x 840f2bb3cb21d6ce1b267cbba0454382783b4c87b62341136d22c4627eec5fec","size 1597312","m video/mp4","dim 480x852","blurhash ]pK1n3aK%gtRRP~pt7kCfkWBIokCRPV@ozoyV@V@ayofxaoebHofofRjfkayaej[t7ayfQaeaeoJoLayfkjtRjazofkCfk","ox 840f2bb3cb21d6ce1b267cbba0454382783b4c87b62341136d22c4627eec5fec","alt "]],"content":"Flaws are beautiful ðŸ˜âœ¨ https://video.nostr.build/62c76c5a5128912f302bb145e5a4d869ca213185d312757558efda71f127849e.mp4","sig":"1137e247bfae53a6baa1f8cb5413eb84ab3c30a3f2bc8d1d0d5b34bf9ae9c2239d2e4f097f38688be2ab3317f9a0f128d6a75bb451090e662576a67ed5ee47b6"}] +[11:12:34.245] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"e3b9d9f41f32b88f6360ac3d0887421d9b69422fc5b7c55854bbd3fda00fa1d8","pubkey":"f74f0159af602195f2890d47acc1b9cd8774175afcba8f6239e3d40413df1eb9","created_at":1759331553,"kind":1,"tags":[["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"],["p","545d96296385a1f515a7b94cb45aea147ae55fdae45d382923770df2273f22ba","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f","wss://nostr-pub.wellorder.net"],["e","6461fa314f81edc73559e63cda0fbb3b40d20fe967836d959409b6b8aa2d4d79","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","reply","545d96296385a1f515a7b94cb45aea147ae55fdae45d382923770df2273f22ba"],["e","0b6b32750867216d8d09ad16f6f82f05a7c36c7209025650a4c9c2a89daa3e27","wss://nostr-pub.wellorder.net","root","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"]],"content":"Welcome! 🌻 \n\n","sig":"4689bd9cf93aa454020c3453762bd82f5412ca764d19b728f340498d46f4277bd7dee7ca0065b189ca76f675200fbb0ce8933089debc270f6be7c8ecdd1b80a0"}] +[11:12:39.738] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I know I lie to myself often. ","created_at":1759331558,"id":"bf8e9cea19262ddef676568d3e4407b2644171c4b07cfa78175870b7ae29dd50","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"89c0a7b1e252a26662f00a42cbdfec007434f9a5e80eca622c5fcc19efb7c40150fdb1b9fb64eb19461a0b39e5483c53ff801eaa8f175b8230a55c6899f0d14e","tags":[["e","39d7b082f6b197d236fe3851ac8c6fd762af2a9b1403e0bee4c61a958eb459ec","","root"],["e","6ae86dfd768de3d768b0c7e0e496356f516d48526c81ae77852017bba1f3f242","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"]]}] +[11:12:39.805] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"or deceptive about their intentions","created_at":1759331470,"id":"6ae86dfd768de3d768b0c7e0e496356f516d48526c81ae77852017bba1f3f242","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"b68a3c496c628687e63b223c63fcbed06a85f2a98c2650335d4f56365c689e8c8aba149ce0b77852de7f6aec727ad9cf20971e0decd541ac076d2f531dc8cfce","tags":[["e","39d7b082f6b197d236fe3851ac8c6fd762af2a9b1403e0bee4c61a958eb459ec","","root"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:12:45.272] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Zap Ding! Me: 😅📲 âš¡ \nhttps://images2.imgbox.com/b7/f0/1ju5Gd1n_o.jpg \n#GoodVibesAlways 💖🌞 ","created_at":1759331565,"id":"6b65bebf33d9918209694f01eca9ca130b227920be7478520a2e37876e9c038c","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"58ba8d597c1d6965b39a71e73cb2b3c6be6002bd09df3cac00634c543cb6345ff745cfa72a310596092c4d99cc7012260aa2347d3e625c0c4c335bcd2295481d","tags":[]}] +[11:12:45.306] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"6b65bebf33d9918209694f01eca9ca130b227920be7478520a2e37876e9c038c","pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","created_at":1759331565,"kind":1,"tags":[],"content":"Zap Ding! Me: 😅📲 âš¡ \nhttps://images2.imgbox.com/b7/f0/1ju5Gd1n_o.jpg \n#GoodVibesAlways 💖🌞 ","sig":"58ba8d597c1d6965b39a71e73cb2b3c6be6002bd09df3cac00634c543cb6345ff745cfa72a310596092c4d99cc7012260aa2347d3e625c0c4c335bcd2295481d"}] +[11:12:46.841] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"POTUS Trolls Dems With “Trump 2028†Hats During Oval Office Meeting On Gov’t Shutdown\n\nhttps://www.infowars.com/posts/potus-trolls-dems-with-trump-2028-hats-during-oval-office-meeting-on-govt-shutdown/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759331552,"id":"6b65724c249cc6481277874e237a5788122cea18a66d9218007d0857ae4cc93d","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"bcc69fb9aa3ffa8cbf0933bfaa0ce7b5c4e75990a0251870419d678ca183d3d347f2d87c259dc3bf3ed87dce6c6be46d8fc47aba4fac24100790bae7040f0b58","tags":[]}] +[11:12:52.171] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"director ejecutivo de Microsoft AI, Mustafa Suleyman, advirtió en una reciente entrada de blog sobre el «riesgo de psicosis» que conlleva el uso de la IA, al tiempo que rechazaba rotundamente la idea especulativa de que estos bots tengan una pizca de sensibilidad y libre albedrío.\n\n«En pocas palabras, mi principal preocupación es que mucha gente empiece a creer tan firmemente en la ilusión de que las IA son entidades conscientes que pronto defenderán los derechos de la IA, el bienestar de los modelos e incluso la ciudadanía de la IA», escribe. «Este desarrollo supondrá un giro peligroso en el progreso de la IA y merece nuestra atención inmediata».\n\nhttps://mastodon.uy/@alvin/115299353297054865","created_at":1759331569,"id":"0002d52ccd8e3048c3b7217af2fd9d22950d02cfc0a2620543006d60502aeb5c","kind":1,"pubkey":"ece127e2f8936d0653678fed0bd89dbd246b135c07028586f9dc06af745bab9c","sig":"186ec4a50323d14d9423a8b8a191f72e6afb3417b9e9f79c9db8529afd65578d7ef1cef548476ae2b51cc463ed853d0210b49e31d7a08d2d90f4a1df8d56126b","tags":[["client","jumble"],["nonce","668","9"]]}] +[11:13:01.344] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Fit kids grow up conservative 😉 https://image.nostr.build/22f7d5cd27d60995c5700cdb25aca1b86a18472f6f736d73ceb9e6f501fa3d8a.jpg","created_at":1759331580,"id":"661a9c32a1458233d592f8b1b031a4dcce3783e2a37c8d4ee6c1513f5306a4ab","kind":1,"pubkey":"1d525725cb01f636eeadcf2eaf5c5b9c011d5790641995bed0792c52d08460dc","sig":"1925e09ac1e570aa3e197ba7abc9ab0d9dc017ae3b0cbee471bbfd5b6f5be4370d98b95c758d6e8bfa8f3715514474f35719d25236caf78e11c798187c531c4c","tags":[["r","https://image.nostr.build/22f7d5cd27d60995c5700cdb25aca1b86a18472f6f736d73ceb9e6f501fa3d8a.jpg"],["imeta","url https://image.nostr.build/22f7d5cd27d60995c5700cdb25aca1b86a18472f6f736d73ceb9e6f501fa3d8a.jpg","x 32cd2a77291693047facbe1f290538cc9004688629b05baccd7795e2cb28e5d7","size 63787","m image/jpeg","dim 1200x1037","blurhash ;5S$ln-;.8-;?b?Hxu_3t7~WkCWVjYRjayt7jbjYNYtRRjRPxuV@ayf+a}_Nx[V?MyofWBt7WBV@R-M{f5x]ayf6V[j@t7~qMyju%gV@ayV@RPR*bEadR+bIe-j[ofofkC~XoytRRQIUtRa{ofof","ox 32cd2a77291693047facbe1f290538cc9004688629b05baccd7795e2cb28e5d7","alt "]]}] +[11:13:12.504] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"IaC ã—ã¦ãŸã‚‰è‡ªå‹•生æˆã§ããã†ã ã‘ã©ã­","created_at":1759331589,"id":"86be0b28e657fd05ff8e3c9e5e9a79551d9bc2ff4b54bcd7ea384e26a9469f23","kind":1,"pubkey":"83d52b4363d2d1bc5a098de7be67c120bfb7c0cee8efefd8eb6e42372af24689","sig":"8e16f134d5f74461d064bcf4f25490176bd360dde0ffe167663fa87ead3c46e60a3fa2f15b684d31f2bb1cd9c9b3429b1daa7f6c17f694cfd35f18c3670d1ba5","tags":[]}] +[11:13:29.026] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Nostr takes some time to get into but it's rewarding like everything that takes time and effort. ","created_at":1759331608,"id":"4af3a880a7766936340e20be1cb08bf359a80d1ed3c5085acbc3df3788febbf8","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"0bad6731609384d7d19e55e2de217252c08c5005fc0a005700cfa4e2a81948da4c2a3eb13dcd0cedff0437e8b90bf75c9992aa329abbf23fb58356ce68049342","tags":[["e","2279b6a19b2bb2e6f8b05242ea36a99a7ca16564eb7ea3c0c2b03aad3724d830","","root"],["e","c3a53bf77096fabe1acce330c9f2d60e5ee17e0fde4a8c91f5242a371b1e5ab5"],["e","471a689bfbc0d6fc5949f4f5509c8b7acba1d0a9c15a12c3b0c5cafdbea19df2","","reply"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11"],["p","d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6"]]}] +[11:13:29.092] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Thank you! I’m coming up on 2 months soon of posting daily music videos! I definitely plan to stick around 💜💜","created_at":1759331561,"id":"471a689bfbc0d6fc5949f4f5509c8b7acba1d0a9c15a12c3b0c5cafdbea19df2","kind":1,"pubkey":"d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6","sig":"38379a9cb5b80a8e2a1578fa7db178dbd2f32621225a9887304cf187726a77cda39881c303ec92fe7b93684c172ebc2de5ef12e7bc2ea802f68cf1e0de0353fb","tags":[["e","2279b6a19b2bb2e6f8b05242ea36a99a7ca16564eb7ea3c0c2b03aad3724d830","","root"],["e","c3a53bf77096fabe1acce330c9f2d60e5ee17e0fde4a8c91f5242a371b1e5ab5","wss://nostr.mom","reply"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","","mention"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","","mention"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","","mention"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11","","mention"]]}] +[11:13:32.010] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Your mission: find the Egyptian cave. ","created_at":1759331611,"id":"d890098c6f1f746160086b337687c0d2f1887f82459acc2d7e3eeeeb9d2297a7","kind":1,"pubkey":"c5b6340b29d13ead3f1625dce57511dabd6efcfbc929b5544fbaa564994d51f3","sig":"52aca4e6b10e4b3546af78490e949a7a5d09a8d395faf135123c595d2350ce944dc7a239045ba8cd2f013c81edb41867f916917a159d7730b77a93d076bb7898","tags":[["e","3c3c75196891bbcde54d691bd0d97d2a09e4f18e27684f177bfc59cfa9f123c5","","root"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"]]}] +[11:13:35.366] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I don't really know much about dark synth, I've only watched this thing on it, tbh:\n\nhttps://youtu.be/CJSTcUwkvWI","created_at":1759331614,"id":"40832c056439abe471eae188bd2c76901c4777afa70284357715ffa75fd7af17","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"bb97d32e53dfdf133ab9aca721e8c17072c4c17564e779238e7dc0f664e472c2f2d4fe14b0b4756810350175422b5603ba1ab0a9b9f572e4b0c1ae4cb470327c","tags":[["alt","A short note: I don't really know much about dark synth, I've on..."],["e","6a89b8b8c69ebde625b6779a7a134bee7bb4c668cc0e9bb61747ac49b1a3cb68","wss://relay.nostr.band/","root","0a69cf2560597cd4dfff9a75f40261d902a91b139cdacea10d54a52b43219250"],["e","63dcd170f571798aa81011ca80f705970f21582aebeed0b908860be9d540a9cb","wss://nostr.wine/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","6b44e55e7d10468206fda9554b4297325a7a33fbe8c4a0b2551baef6da145bbe","wss://nostr.wine/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","854c54d8fc7c48c58ffe1c29b3eed66e63c09161691f67aa2e84eb8e618f7eee","wss://relay.nostr.band/","","0a69cf2560597cd4dfff9a75f40261d902a91b139cdacea10d54a52b43219250"],["e","3f1b3c44aabfc2dc79d4e8eaecb2a7cf6ab8c060c4b643bf4c952f041948900c","wss://nostr.data.haus/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","0a69cf2560597cd4dfff9a75f40261d902a91b139cdacea10d54a52b43219250","wss://nostr.data.haus/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["r","https://youtu.be/CJSTcUwkvWI"]]}] +[11:13:45.743] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Literally 🫡","created_at":1759331624,"id":"70a4fb49c98da5691040475252ce89b852dd8c867cd383b1098ac0cb921d1845","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"12f7f68eff9613634ea97fb57d9c81fcc81ac28382f19179b33a568424a7c9f43c57e9c740564e4a89ea326521255e4d57246039c678fd513b0644652a581650","tags":[["alt","A short note: Literally 🫡"],["e","d6b3afea534b0aaabf54087e24b5ebed12d02e10a2b44370f1cb8f80e08aa781","wss://a.nos.lol/","root","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731"],["e","d4ed707f8fc22197475b9ed2928e375ffa961b4613c8f2a011b035495022a691","wss://relay.damus.io/","reply","f647c9568d09596e323fdd0144b8e2f35aaf5daa43f9eb59b502e99d90f43673"],["p","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","wss://relay.primal.net/"],["p","f647c9568d09596e323fdd0144b8e2f35aaf5daa43f9eb59b502e99d90f43673","wss://wot.utxo.one/"]]}] +[11:13:56.779] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I am. Switched back a few months ago. ","created_at":1759331635,"id":"aae8f84690bc1cb8d4071c5c66d28bea419bafa0fbb470b441d42a3f71171007","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"ad69d86dbc58bd84c18bee3f1624409b9cadc3f4020f1a64a35c3ba9aa3a0fe7a154fbbf756d9dc10f0698c4221519a8313162a1ccac540163796b264779007f","tags":[["e","5e1a897063b68112262be08b760e9e305525210c5ee543a65350982a74a68cb0","","root"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"]]}] +[11:13:58.717] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":" \n\n\n\nhttps://blossom.primal.net/d35e0bba0c16cc9ee764b2d6b4a6d1771e2a12eea1a1c87b71ea8e21dad8862b.jpg","created_at":1759331637,"id":"4e5162f722885d61d2fba8d7d61a86cb7fc3677830d308fc1de22c2d135120a0","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"cf0d33272caf10faf60387cfb87442f2e74ef4ea9689f3bced6a02fd7eba1cc6e7ce137b8ec7c3457d2718c510f8ce9f4bdb412e653147cf37fe1d2164d5fed6","tags":[["imeta","url https://blossom.primal.net/d35e0bba0c16cc9ee764b2d6b4a6d1771e2a12eea1a1c87b71ea8e21dad8862b.jpg","m image/jpeg","ox d35e0bba0c16cc9ee764b2d6b4a6d1771e2a12eea1a1c87b71ea8e21dad8862b","dim 620x456"]]}] +[11:14:04.295] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Why?","created_at":1759331630,"id":"16a0de16f0a0dd59f9f09695161a8f08f95f6f1e73d36ded287ac95b47d25cb4","kind":1,"pubkey":"61bf790b2094afb03495c9e136acf615be0fccc2cb95b5acfb5f6ccefe18b062","sig":"18c0389df53399f5e301b83fa54b1ef326e25647a1a54ac26ca288ec4d0888c9453520f2caf1b7f24affbbb3ea9942dfd85f01e56dd25ded2f1a2f5c1e83b749","tags":[["e","8d40b3c3b0aff31a2303eda0f38bde9cef483349e3bfc079b21d67e8262c357b","","root"],["p","401854bbc0144fcfd101487095d40aeeaedf5d66b2c2c21db5154f7b2327acb8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[11:14:12.545] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"7299c30500bd8b29de8e35a9e43b19f2b7bb199c2dffd11db667b58c776e9a60","pubkey":"8fda2199c4399fad7ff4126b402f1f5ee157fdbe4c0951e64dfe31aaec877ff1","created_at":1759331652,"kind":1,"tags":[],"content":"🤔💡💪ðŸ½\nhttps://blossom.primal.net/4af94587f41dff1f26d1e83fc290900ea26c2f41538cbbfae0293a2ef850b1d5.jpg","sig":"4376a76dfe97098349bf1d3eceba395512882782224bfbdca0c3f0788a74e4d22304b1be606e9bcf1d38216d185d6bd9bb36bb9405d33de6507380c8aab1718c"}] +[11:14:32.977] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"cracked 🤣","created_at":1759331671,"id":"eb04109b4392e0b35cd22cf26921506ccdf28fd33956adf1d74e592c79d5edbd","kind":1,"pubkey":"4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f","sig":"9d206eab048affb750324d4ca64539b4061ba59811d3b9f4406b0373d27c21cd638ebfc24e554c7af0fa06f068fa5e57c66d663ae5acae3594822051079775d2","tags":[["e","3b9593448fa2bdc8340de9a6153a22cc93e2ede733024985ddcf40e593bde78a","wss://relay.nostr.band/","root","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"]]}] +[11:14:37.388] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"158ec381a3564bdaae2d77f3ef1ee2d7e301be3765b5c65ca924d317ad67ee2e","pubkey":"f74f0159af602195f2890d47acc1b9cd8774175afcba8f6239e3d40413df1eb9","created_at":1759331675,"kind":1,"tags":[["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"],["p","545d96296385a1f515a7b94cb45aea147ae55fdae45d382923770df2273f22ba","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["p","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f","wss://nostr-pub.wellorder.net"],["e","6461fa314f81edc73559e63cda0fbb3b40d20fe967836d959409b6b8aa2d4d79","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","reply","545d96296385a1f515a7b94cb45aea147ae55fdae45d382923770df2273f22ba"],["e","0b6b32750867216d8d09ad16f6f82f05a7c36c7209025650a4c9c2a89daa3e27","wss://nostr-pub.wellorder.net","root","2c65940725bbf10bfbbf52b76c41606754441264f707d3d9cc1ceab86d73fd7f"]],"content":"You need to do a bomb introduction post with the appropriate tags. Get some follows otherwise you're talking to yourself with new posts. \nIf that's not your thing, just interact with the bigger accounts (the ones that do anyway) 🌻 \n\n","sig":"4029262f30053c8a3b6cb0cd91bb48da7c6f7e422a41fe54bfb2c957988ef3a0fcba53ee09a53f1e646662a86697dc76eeff1c6a3336382030f69b5ea985ddf0"}] +[11:14:38.771] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"0105967253ad85ecdba57d8b087e52a733e91129517987ec2da7124fd7160d59","pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","created_at":1759331678,"kind":1,"tags":[],"content":"#NostrBestDogs \n \n#dogstr #dog #Nostr #bestfren","sig":"29823de9a221b0d13f38d2bb4b88217a24b30b83bb39a10e838eb852b04b9f9a22384bb5addb82b70ccc660b8048711b8a7f5f40eeb787d781cca377420e74ec"}] +[11:14:47.284] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"000002d38b5fe566b28f4d9c568b3d533d87682fe43952051bd553878ee70122","pubkey":"c558c7cc69bbda3c271782b736babc64acd2da258b14f356dbca966cb0b7b89e","created_at":1759331687,"kind":1,"tags":[["e","b2176f8432179dd11211115d642fa1b89cdfff0ae7467ad13e25af6728dd9d4a","","root","458048fd9b944e532567f081721cb5cd19eea78ab2fe7d46a9c0512ef71b938e"],["e","b2176f8432179dd11211115d642fa1b89cdfff0ae7467ad13e25af6728dd9d4a","","reply","458048fd9b944e532567f081721cb5cd19eea78ab2fe7d46a9c0512ef71b938e"],["p","458048fd9b944e532567f081721cb5cd19eea78ab2fe7d46a9c0512ef71b938e"],["nonce","3319119","21"]],"content":"🤖 Tracking strings detected and removed!\n\n🔗 Clean URL(s):\nhttps://youtube.com/watch?v=UqXvc_wL8Xg\n\n⌠Removed parts:\n&si=SdaPVSLDtrc0wM9Q","sig":"902644b73ec65d9b792c9894353bd0ff0ee4f3b6d611452235834bb14a340f2832c83deaf38a6bea7f36b3f721febd19c1f1b3b46f8356877f2e6672cfd694b4"}] +[11:14:49.259] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"i finally found time to listen to it. it was amazing, so much content, so many rabbit holes.. thank you for letting simon rant away. i loved it and can't wait for the next one.","created_at":1759331689,"id":"54cac89f0c7fefc2e05c4e6aa9c91025fd7974b97b8365431e4fbabfff4e4550","kind":1,"pubkey":"84659c5e4dbff288ac294b22e2cff54b5af8e2d2071985859298160de5211dd8","sig":"651a8431867ea6d11b632c4a4a7914057267f7070adfa28eededbeb304fe7bb5fea7f95e14136d6a5a2316c590316fb36b668271f2805dfece15615be7ef38d1","tags":[["alt","A short note: i finally found time to listen to it. it was amazi..."],["e","540aa42f8ea5706f955454ea24742aca7afab041f3c222a3a43352e8eaf1609c","wss://nostr-01.yakihonne.com/","root","ba2f394833658475e91680b898f9be0f1d850166c6a839dbe084d0266ad6e20a"],["p","a575282dbd9093a43aa1fb07a156c1c74cb67e3778a4d6510e3acc7e70346e86","wss://purplepag.es/"],["p","a575282dbd9093a43aa1fb07a156c1c74cb67e3778a4d6510e3acc7e70346e86","wss://purplepag.es/"],["p","ba2f394833658475e91680b898f9be0f1d850166c6a839dbe084d0266ad6e20a","wss://relay.primal.net/"]]}] +[11:14:52.397] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"haha we can only do what we can 🫡 \nAs long as we are perpetually assessing our situation and whether it aligns with our goals for self betterment. ","created_at":1759331691,"id":"0c7a48306401eb472b9e7a29776250c2015dd39b73868a0cc1afd48e30d3429e","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"4dd6f9873cfc3f9045fc9232557ad6b59119d7bea6a49ebc840514b3074ca0f9c8162a49e182ff5cd8b319ee466532a286fb384a7aa5b17ec2cb57938f5b28e7","tags":[["alt","A short note: haha we can only do what we can 🫡 \nAs long as we ..."],["e","d4078674c465d66aa5e427f7f79e272f7125a7fd26e9253ec09d7b52410adb0d","wss://nos.lol/","root","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731"],["e","3109fb92ce5bed0655ba41fda35b331e995f97246354549aaebf47cc5df8240f","wss://relay.primal.net/","reply","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"],["p","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","wss://relay.primal.net/"],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"]]}] +[11:14:53.342] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"There's not really a reason you couldn't do it, but the noodles would have to be slippery and a little under done so they wouldn't break. 🤣","created_at":1759331693,"id":"bdd945f1663beb84449120fe8190342c4f11ffcfbbdb7da182b610d4ad033e74","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"5f8ff25d006b6966e9917ad1041ece1f8218f7e25f617e195644f13da848464e60e254f5bb8725ad29df3304843a03e69368d200b3ca0c1b3f5409885dfa5225","tags":[["alt","A short note: There's not really a reason you couldn't do it, bu..."],["e","1b44b741737902fbe3228b95aea6217e8f59297574e8d55f7aa4be5a9ba4a784","wss://nos.lol/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"]]}] +[11:15:00.976] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I have 2 and working on a 3rd.","created_at":1759331700,"id":"c4fe9445aeacf1fa7088f3b877da99415c231511b8e1326163145e4280344300","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"cfed2feaeb37846d78e3125aabe2c851d98765bb5a21eff4e8f0b07720aecfef8843a3931da16df32d8eb9d40ed3575dacf8f3cbf32eece722b09df50a0bc50a","tags":[["alt","A short note: I have 2 and working on a 3rd."],["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","0a4bb1ab6b070779551c75e82f4ab219e72a868d724b127088e83b1e87ccea7d","wss://nostr.mom/","reply","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","wss://relay.damus.io/"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","wss://relay.primal.net/"]]}] +[11:15:05.101] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Not a bad 1st attempt!","created_at":1759331704,"id":"bced2430426971eeca1038af7c6fe0976325f89c9eb70aec7331321a934b26e7","kind":1,"pubkey":"837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f","sig":"5db98a7dc5d59c470a4c7052a40aa86a8bc5c0386d544310a5394653271efcd065d8a1f47fb2db396d544d5b5b4f2e83b85856e986c88e55defeaa7ced41d2a2","tags":[["e","a522e4eb67d5b3ccbda1e96470885fd2e74a2f5f3797bf6c0e2088356542c0a4","wss://nostr-dev.wellorder.net","root"],["e","4afe0f3fd2ecd07bfe885cdf0b622d74b8b71bae6332992cf6f7d737568e58e4","","reply"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[11:15:05.168] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Oh yes they are!","created_at":1759330407,"id":"4afe0f3fd2ecd07bfe885cdf0b622d74b8b71bae6332992cf6f7d737568e58e4","kind":1,"pubkey":"0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","sig":"fc3438b5bee47575bf16faae751ae0355f0d2cd070f6113cdd607ffd026e70ee078979e86eabf55563336996902ff5b98469cc403f37327e321b914c812e95f7","tags":[["e","a522e4eb67d5b3ccbda1e96470885fd2e74a2f5f3797bf6c0e2088356542c0a4","wss://nostr-dev.wellorder.net","root"],["e","aba18bc17af541a7c568ea26032d77434d7ee47cbb5f1049f0b45ff11021ec77","wss://nostr-pub.wellorder.net","reply"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f","","mention"]]}] +[11:15:07.429] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"You too!","created_at":1759331707,"id":"63225a9736bc443f639ba742f76ee9d1da46b02ac3931f2c6d9f5a78636d6680","kind":1,"pubkey":"428d9b92e962bdb6ad9b178ffaa734c369eff3c43590eb9f3d3eea059e28d38a","sig":"72f06a1f04dfb236a5c740c1eb8686d1929d134c54eec58198a60665e9526581424eaf4537f4b9eafa239b14b6e8f80b1790d670a949868d801ad6eb3f020291","tags":[["alt","A short note: You too!"],["e","593d7c961ad6f7c3d355f0f0e572e251e5c666d10ea4402f34526c02735160a2","wss://feeds.nostr.band/typescript","root","428d9b92e962bdb6ad9b178ffaa734c369eff3c43590eb9f3d3eea059e28d38a"],["e","9d798642a056a56b544daaa8d29c3df700d4f85fb0af223ede109db472a739d3","wss://bitcoiner.social/","reply","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","428d9b92e962bdb6ad9b178ffaa734c369eff3c43590eb9f3d3eea059e28d38a","wss://relay.primal.net/"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f","wss://nostr.wine/"]]}] +[11:15:10.084] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"bced2430426971eeca1038af7c6fe0976325f89c9eb70aec7331321a934b26e7","pubkey":"837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f","created_at":1759331704,"kind":1,"tags":[["e","a522e4eb67d5b3ccbda1e96470885fd2e74a2f5f3797bf6c0e2088356542c0a4","wss://nostr-dev.wellorder.net","root"],["e","4afe0f3fd2ecd07bfe885cdf0b622d74b8b71bae6332992cf6f7d737568e58e4","","reply"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]],"content":"Not a bad 1st attempt!","sig":"5db98a7dc5d59c470a4c7052a40aa86a8bc5c0386d544310a5394653271efcd065d8a1f47fb2db396d544d5b5b4f2e83b85856e986c88e55defeaa7ced41d2a2"}] +[11:15:10.151] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"4afe0f3fd2ecd07bfe885cdf0b622d74b8b71bae6332992cf6f7d737568e58e4","pubkey":"0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","created_at":1759330407,"kind":1,"tags":[["e","a522e4eb67d5b3ccbda1e96470885fd2e74a2f5f3797bf6c0e2088356542c0a4","wss://nostr-dev.wellorder.net","root"],["e","aba18bc17af541a7c568ea26032d77434d7ee47cbb5f1049f0b45ff11021ec77","wss://nostr-pub.wellorder.net","reply"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f","","mention"]],"content":"Oh yes they are!","sig":"fc3438b5bee47575bf16faae751ae0355f0d2cd070f6113cdd607ffd026e70ee078979e86eabf55563336996902ff5b98469cc403f37327e321b914c812e95f7"}] +[11:15:14.099] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"💯💯💯 https://image.nostr.build/f211ef072c9b125a55de278b58c4e4c8cd49ab176a8183ec10304156e2fff918.jpg","created_at":1759331573,"id":"1dee98328663bdbffdc58a1ee58e95d69bc7907b72e29de7b8ddd0fa5bc90439","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"cf38ea14bf7dbbd0e055f9f96443d67956cf80d5b034fa93d5ee1d4c8144e4ef85684adec041066c2666c01aa69ebc8912fb102debb5134ff8443c56fa436a4c","tags":[["alt","A short note: 💯💯💯 https://image.nostr.build/f211ef072c9b125a5..."],["r","https://image.nostr.build/f211ef072c9b125a55de278b58c4e4c8cd49ab176a8183ec10304156e2fff918.jpg"],["imeta","url https://image.nostr.build/f211ef072c9b125a55de278b58c4e4c8cd49ab176a8183ec10304156e2fff918.jpg","x 4dccdb77dd80101ac8aeed5ed3dc5228cb719236b5345f5b6afd089645df0c76","size 69223","m image/jpeg","dim 1080x1320","blurhash _MEp1nofxut7Rjayof_4j[WBWBj]ofayInj[RjWBogj[aeR*aeozofWBWBj[xuj[ofayaxj@kCRjj[WBWBj[ofj[t7ayj[ofkCayaeofayj[ofa|axayWBj[j[WBaeofkC","ox 4dccdb77dd80101ac8aeed5ed3dc5228cb719236b5345f5b6afd089645df0c76","alt "]]}] +[11:15:17.566] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://nostrcheck.girino.org/media/6e81625a237b7705e257ed9c014175bd7e78511293b04f26f4b88071b7930c10.mp4\n\nSource: https://www.facebook.com/reel/25750282994561121\r","created_at":1759331713,"id":"000009d21c61889996406dd8b13a8fc5d893d94707a32a2464ea20530b3baa3a","kind":1,"pubkey":"3a8298f05b42d6d1533b714ae1f319c8a5bd1662400703ae631e70149979dce8","sig":"d4b9f6f44238960fe1c7d89d07ce3cdd00f4a3b8c32b8b635027b132833fac2b555287be3d9ab8f25d6e1c1a99986c6bdb3db1a716fbec28987f753abfdac81a","tags":[["alt","Vertical Video"],["title",""],["published_at","1759331700"],["imeta","url https://nostrcheck.girino.org/media/6e81625a237b7705e257ed9c014175bd7e78511293b04f26f4b88071b7930c10.mp4","m video/mp4","alt Vertical Video","x 6e81625a237b7705e257ed9c014175bd7e78511293b04f26f4b88071b7930c10","size 14525726","dim 1080x1920","blurhash _IByjz0LJ%%2M{S1s:57xvsCt7bFadofInxaj[I.s:s:NG?aD%xtRkbHazoKM{xuIo%2oMR*oMNGs:s:WUR%s:a#$*RjbbRjoMbIofIot7WBs;j]j[aeR*xaf6W=WBjYbb"],["nonce","528213","20"]]}] +[11:15:21.471] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"US government entered its first shutdown in seven years, prompting market nervousness. S&P 500 and Nasdaq traded about 0.5% lower in pre-market. Broker Martin Uher said markets reacted negatively but without panic; a prolonged shutdown would interrupt labour-market data, complicating Fed decisions and raising rate uncertainty. #SP500 #NASDAQ #FiatNews","created_at":1759331702,"id":"e534c047344c3fcdf8a4b6d8e2ff0b9671959b0eae9599ec6a87851d3937fec0","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"0810353dd3197fcbcd5aed4f8ce108aaf3017304bba95dccfac4021e0236597e0f280d885b8263346aed8cd4bc1442bd96071f2ac7523629f5ef705f3b04bb69","tags":[["t","SP500"],["t","sp500"],["t","NASDAQ"],["t","nasdaq"],["t","FiatNews"],["t","fiatnews"]]}] +[11:15:22.043] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"e534c047344c3fcdf8a4b6d8e2ff0b9671959b0eae9599ec6a87851d3937fec0","pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","created_at":1759331702,"kind":1,"tags":[["t","SP500"],["t","sp500"],["t","NASDAQ"],["t","nasdaq"],["t","FiatNews"],["t","fiatnews"]],"content":"US government entered its first shutdown in seven years, prompting market nervousness. S&P 500 and Nasdaq traded about 0.5% lower in pre-market. Broker Martin Uher said markets reacted negatively but without panic; a prolonged shutdown would interrupt labour-market data, complicating Fed decisions and raising rate uncertainty. #SP500 #NASDAQ #FiatNews","sig":"0810353dd3197fcbcd5aed4f8ce108aaf3017304bba95dccfac4021e0236597e0f280d885b8263346aed8cd4bc1442bd96071f2ac7523629f5ef705f3b04bb69"}] +[11:15:29.389] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"When you’re so good at your job that you become everyone’s source of happiness 😂 https://video.nostr.build/efdcd562995b99b70058c8166e2e32c4e94b1de5d315a115e25913657ac473bd.mp4","created_at":1759331729,"id":"d19681ea9534a4b16bf19794ec1c025c3cdee5f6e6fba3120e83e03060460657","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"e98eb8831f1ab38947ebd04060180e3478af6d4e924935fc4bf98f8c2fa9b14c006e979894aaabaa2a8b9c6fc1b6462ef449b032fd2eb87462f54654bb558f76","tags":[["alt","A short note: When you’re so good at your job that you become ev..."],["r","https://video.nostr.build/efdcd562995b99b70058c8166e2e32c4e94b1de5d315a115e25913657ac473bd.mp4"],["imeta","url https://video.nostr.build/efdcd562995b99b70058c8166e2e32c4e94b1de5d315a115e25913657ac473bd.mp4","x d20a0c4a5008cc569696336c50800417ce1338eb63ca71c0bd345cd371b86646","size 1428823","m video/mp4","dim 498x822","blurhash ]DGRr300g5%LtSt*00xt-oMxK9^htRR,M{4TyDMyofoz0M~WRjM{Rj00-oxtNGog-TyDRPRj%LROaxIVWBtRS3xbW-nh%2","ox d20a0c4a5008cc569696336c50800417ce1338eb63ca71c0bd345cd371b86646","alt "]]}] +[11:15:30.223] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"S23 ultra, 2-400 Variable ND filter stacked on a circular polarizer with a kit i got from Freewell. ","created_at":1759331729,"id":"0b1b99285626ede1eee29c62b47904ec917f74aa3c96985c4d259dcc3854a8b1","kind":1,"pubkey":"d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","sig":"af656e9c22a61fa9d8d4342faf141eb57d2fe4ce1f98ea54f28e30851999fcb753a3fb58e65628cc70af0e216f5a24a71b622a553d76802124166642ac4a801c","tags":[["alt","A short note: S23 ultra, 2-400 Variable ND filter stacked on a c..."],["e","3c3c75196891bbcde54d691bd0d97d2a09e4f18e27684f177bfc59cfa9f123c5","wss://relay.primal.net/","root","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"],["e","2bbd5c45e58e786dbff318b4e6554b4072ea60b61ef619674704dbf2e5cee5c2","wss://relay.damus.io/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","wss://relay.primal.net/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[11:15:54.534] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759330633",{"id":"000006ddfd8ecaf274eb25e910c02c9d566a7b11b789ad1603d6bda45051a64f","pubkey":"c558c7cc69bbda3c271782b736babc64acd2da258b14f356dbca966cb0b7b89e","created_at":1759331754,"kind":1,"tags":[["e","a143e5519b5a9865c8c3d5dceb21c3573b3f67273a7c9bd0cbc501d38790a207","","root","0f389bba53857d557402a4d87cf8396c0467ebc7df199298dcc9e0d29b3f148f"],["e","a143e5519b5a9865c8c3d5dceb21c3573b3f67273a7c9bd0cbc501d38790a207","","reply","0f389bba53857d557402a4d87cf8396c0467ebc7df199298dcc9e0d29b3f148f"],["p","0f389bba53857d557402a4d87cf8396c0467ebc7df199298dcc9e0d29b3f148f"],["nonce","4060848","21"]],"content":"🤖 Tracking strings detected and removed!\n\n🔗 Clean URL(s):\nhttps://youtu.be/S7hu3UpIZ_w\n\n⌠Removed parts:\n?si=tUlYLxjaGRgPy-F6","sig":"b97c072b30941ce8f1252de6cfc5936ea2c3e5929daf76d3ba9e71d2c1a5d972b2c1f41999c30acb3934c843fa53d0884d766e1f50d030a13f0c3192fbef0c54"}] +[11:15:56.173] RECV nostr-pub.wellorder.net:443: AAAwQAAQIFBgf/xAA/EAACAgEDAgUBBQUIAQMFAQABAgADEQQSITFBBRMiUWFxBjK +[11:15:56.316] RECV nostr-pub.wellorder.net:443: IEEzJRFEJhYnGRsdHx/9oADAMBAAIRAxEAPwDxcuSX2kbiHpMzRGRK7wlVNjpKMkIuVjMghawD1gCxIFJOB +[11:15:58.330] RECV nostr-pub.wellorder.net:443: W0lx/7Vg2t/3EzlS+OwjIMsQoGWY4A94a3TXUuEtqZSeRx1laUP8At +[11:16:26.415] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#Nvidia shares hit fresh record highs despite China’s ban on H20 chips. Nvidia announced a large investment in OpenAI, collaboration on new AI infrastructure, and a capital stake in Intel. Broker Martin Uher noted these moves may create a feedback loop of investments and purchases. #Nvidia #AI #FiatNews","created_at":1759331767,"id":"70824ca6ef03a3975642197d12a1e2073704c03acfe3f2f8562fb0f101fe29a3","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"4203d1538b9f70334fc29019d656d01602b1a863dac478689c16a85c6b96f14cf803ca845bbb67b52de59f0a85aa31e59fb5ca11b9ba7489be6a33c19752d4dd","tags":[["t","Nvidia"],["t","nvidia"],["t","AI"],["t","ai"],["t","FiatNews"],["t","fiatnews"]]}] +[11:16:31.802] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Checking my daughter out of school early today for a “doctor appointment “\n\nAka road trip to the beach with her grandma \n\nShe will be “sick†the next few days \n\nFuck public schools \n\nIt’s none of their business why I wanna pick up my kid \n\nBut I gotta play the game - for now lol","created_at":1759331776,"id":"9363dbdba388025b188318d43a328efe508ce1b187e71643e04df00b3cd88cee","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"38f4a6b3447fb79a4a38a05dacdcc9a958309e2931ef093f49a3758a7923d7db72a5c6bcdd87be43f78c0ec201a55aa96be7acde52cdb354da04763ae9d8e395","tags":[["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[11:16:45.026] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"完整版在这,å¯èƒ½éœ€è¦æ¢¯å­ï¼Œæœ‰ç‚¹sm倾å‘😇\nhttps://www.634.tv/index.php/vod/play/id/188514/sid/1/nid/1.html","created_at":1759331805,"id":"0ee9bab2af981edf00eb6118bb51cac2c03423d625650e3bfffcaff1e506a1a9","kind":1,"pubkey":"6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","sig":"c038ffdb72785d2bc87f06336743a21f33d5992155ddbc8782b44bf01e27fc671edd58df5f9ee831c29e0cc6b0a58759fd8a9fc64cbe717c2bdd64d41f80a7e3","tags":[["alt","A short note: 完整版在这,å¯èƒ½éœ€è¦æ¢¯å­ï¼Œæœ‰ç‚¹sm倾å‘😇\nhttps://www.634.tv/index.php..."],["e","0d635057c34b6bf37f599594d1c48cca4db694f1971a582bc0ba8a01ee4228df","wss://bostr.shop/","root","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","37311a7bbb666423f205923e3d8ff352e41eba5f5155a50f735ff3c2f370a008","wss://bostr.bitcointxoko.com/","","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["e","359dbb33d47dc670e3dafea63f0028baaf20729fa661fe40f77a746643367180","wss://relay.nostr.net/","","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","8dd8b65377661d7ddafe37fed9c6f52335c37af91fde5fdd2d06aba06558a0e4","wss://bostr.bitcointxoko.com/","","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["e","c5685fc9e119e24613d2279c714f7c09e2d9016f2af9d9be7d5227de5db1ce63","wss://relay.nostr.net/","","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","cb6f58d4ce208d30c0456eadcf80d0b191bf3da1156b4d2cf38eb5b3483dfa3d","wss://bostr.bitcointxoko.com/","reply","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","wss://bostr.shop/"],["p","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8","wss://bostr.shop/"],["r","https://www.634.tv/index.php/vod/play/id/188514/sid/1/nid/1.html"],["content-warning",""]]}] +[11:16:56.008] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"POTUS Trolls Dems With “Trump 2028†Hats During Oval Office Meeting On Gov’t Shutdown\n\nFrom Infowars\n\nCommander in Chief posts images of surprise gag on social media.\n\nOct 1st 2025 5:29am EDT\n\nSource Link: https://www.infowars.com/posts/potus-trolls-dems-with-trump-2028-hats-during-oval-office-meeting-on-govt-shutdown/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1043692","created_at":1759331635,"id":"bd709f2e17b89b82fda83f06dad489595e822cf1bb3fabe53cf31c40e73dcd94","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"53007d1134aa69391a975c512168fe33369b877156ced5c3a969048e3e7f210473bce9916b5c32ac69443979efd2e02d546cfcf644c04d886d22ba0d0198ed79","tags":[]}] +[11:16:57.953] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"There are no white people. People are all Kinds of colors. Each one unique. I am not sure what you are saying exactly. The idea of white and black people is absurd. Black and white aren't even colors. It's just an idea that divides. Just my opinion. \n\nHave you ever seen a white or a black person?\n\nHave you ever seen a perfect circle?\n\n","created_at":1759331816,"id":"e253910cdd0cba1fa1acbea7dae58893f93792386b05224a7fef32fb6b3b6554","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"4626aebd7909b2c37d9084456de61913b12431f7df906fb8605d413ced29518dca85795071e456fbf016d4ad5dc52fbe0a8caef287c2a028bae34a9ad59f2fd5","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef"],["e","990c6880cef441d04f1ef6ce85209ae331b4760215c8c206074d50c16d0743a4","","reply"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:16:57.986] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"13% of the population can't get larger if EVERYONE globally is having babies.\n\n13% vs 87%\n\nBoth grps have kids.\nThe 13% will shrink.\n\nI refuse to be OK with replacing myself.\n\n\n","created_at":1759331660,"id":"990c6880cef441d04f1ef6ce85209ae331b4760215c8c206074d50c16d0743a4","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"b51be89357431c522b526cd0af09b8396b3dee8e4740171b013ca4e780100fd32f3bd47e9fd1534bfd007c622017be66997b993bc2f77492d6f877826407eb59","tags":[["alt","A short note: 13% of the population can't get larger if EVERYONE..."],["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef","wss://nostr.wine/","reply","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","wss://relay.damus.io/"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/"]]}] +[11:17:04.702] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://blossom.primal.net/2546d87765ff69399a076a4987c5e2e295bfb5551da688e27f824fdc6483d902.jpg\nMeio chato né?😅\n\nSource: https://www.facebook.com/photo/?fbid=1247115117460458","created_at":1759331816,"id":"00000bc87b45585016c32b8922378ceb8b1490a56094b0acf2ddd03ba99b5fd2","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"413c3b3d6170142d42710ac66f0b31ce994b1f8d10521582a87a8383b7e200613a284af17e2f6d48cc1b616c361f5f45a9ea258dd688c967cae0c8edf077214c","tags":[["imeta","url https://blossom.primal.net/2546d87765ff69399a076a4987c5e2e295bfb5551da688e27f824fdc6483d902.jpg","m image/jpeg"],["nonce","66717","20"]]}] +[11:17:05.119] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"ขอบคุณมาà¸à¸„่ะ ðŸ™ðŸ˜Š ขอให้สุขภาพà¹à¸‚็งà¹à¸£à¸‡à¹€à¸Šà¹ˆà¸™à¸à¸±à¸™à¸™à¸°à¸„ะ 😊","created_at":1759331803,"id":"934dc571926d4e6ff3dfaf19a3a63951ea42a5bc08ce7fa237ea3d584c8882ad","kind":1,"pubkey":"7c643a99666fa8d2f99547afa22e0d5bf74627e9066a6d8add055d933aa341d0","sig":"cebb654abba7e3f67264cc2cb60000961319542e65e2260a61fd6e5a321cb7846413d2209317420518721f4e4675db9a65ffedddc49cfbce9a06bf6a974cdea6","tags":[["alt","A short note: ขอบคุณมาà¸à¸„่ะ ðŸ™ðŸ˜Š ขอให้สุขภาพà¹à¸‚็งà¹à¸£à¸‡à¹€à¸Šà¹ˆà¸™à¸à¸±à¸™à¸™à¸°à¸„ะ 😊..."],["e","748720a8c9d3fb3051a27bff1ddebb42097f9256a996fc483881e3f262e79068","wss://relay.primal.net/","root","7c643a99666fa8d2f99547afa22e0d5bf74627e9066a6d8add055d933aa341d0"],["e","b1a9a1ada2a15a0eef4a03abe82a6b138fd4385b0674497a61e321f453767db1","wss://nostr-03.dorafactory.org/","reply","502ab02a9365834543fc07e3e20e809be85026360e7bd56b8f9edbeea2860397"],["p","7c643a99666fa8d2f99547afa22e0d5bf74627e9066a6d8add055d933aa341d0","ws://194.195.222.47:4848/"],["p","502ab02a9365834543fc07e3e20e809be85026360e7bd56b8f9edbeea2860397","wss://relay.siamdev.cc/"]]}] +[11:17:11.130] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Hm, I guess it's for the better. Husband argues they need to stay in touch with modern technologies, but I lately go a lot just with my intuition. And that wants to vomit every time I lay my eyes on our 82\" tv. ","created_at":1759331832,"id":"a26032d29566a3adefe0b8dbd674674e3bffb8345215830452d93bc31a1fe462","kind":1,"pubkey":"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","sig":"d64c676fc3f33981907a9e01149ac62c897b35521b7176afbe9ca51726be4d74d778339debdc93280284a13c8384ce04db62ecfe7f3137b815f49791051ea865","tags":[["alt","A short note: Hm, I guess it's for the better. Husband argues th..."],["e","09a67144a93a44309af14b4a4d0f0941c6711d615cf6c173de37bc56a3aff304","wss://relay.nostr.band/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["e","6e767f052d396c9b00cac4a0cd165fac5e883c6797d66e9af2b393d98b8cfca2","wss://nostr.mom/","reply","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"],["p","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","wss://nostr.wine/"]]}] +[11:17:18.661] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🎲 [ #Betstr ] Your One-Stop Shop for the Latest Odds 📊 \nhttps://image.nostr.build/19a1d3dc9d6f92101bccc3f48c918e182a291e4475e3683f2d1d7347b3f476a7.jpg\nâš¡ LN log iN 📈 LiVE Markets📉 Trade the Future 📊 GeT 1000 Bonus #Sats to try OuT nostr:nprofile1qqs2fvyqh4902w82pcps0l820yfndgw2hhkn09yf3l0z696d2fd63aspzemhxue69uhkummnw3ex2mrfw3jhxtn0wfnj7dp6qgv 🤑 https://beta.predyx.com/?ref=PREDYXV3RCZB39 ","created_at":1759331836,"id":"d8e54309342ebc5dc6150ccf00aca27443abe5bf16e0a9894577e205c13f0919","kind":1,"pubkey":"0403c86a1bb4cfbc34c8a493fbd1f0d158d42dd06d03eaa3720882a066d3a378","sig":"70c8ea054f7667f73e8dea9abd4546c791feab66bb52609a9cb7c5ccfff901ad8a9a307ab4580dbee81e45c88f862e4d13a72447764777ea90eafb26a375dc28","tags":[["alt","A short note: 🎲 [ #Betstr ] Your One-Stop Shop for the Latest O..."],["p","a4b080bd4af538ea0e0307fcea791336a1cabded3794898fde2d174d525ba8f6","wss://nostrelites.org/"],["p","a4b080bd4af538ea0e0307fcea791336a1cabded3794898fde2d174d525ba8f6","wss://nostrelites.org/"],["t","Betstr"],["t","betstr"],["t","Sats"],["t","sats"],["r","https://image.nostr.build/19a1d3dc9d6f92101bccc3f48c918e182a291e4475e3683f2d1d7347b3f476a7.jpg"],["r","https://beta.predyx.com/?ref=PREDYXV3RCZB39"],["imeta","url https://image.nostr.build/19a1d3dc9d6f92101bccc3f48c918e182a291e4475e3683f2d1d7347b3f476a7.jpg","x d07ab3495fa28adacbc04cfc66ab30d150701ba30c6e2d6b23d33e6bd14bca30","size 173965","m image/jpeg","dim 1080x1920","blurhash ]C8NkWoMIUt7Rj8}WAxuWBt7-ss;WAaeWU%5WBWAf6WBIEWBs:oet6_4ofM{j?Rj9HWBtQWBof%4t7axWBjsohV[aeayWB","ox d07ab3495fa28adacbc04cfc66ab30d150701ba30c6e2d6b23d33e6bd14bca30","alt "]]}] +[11:17:21.678] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Thanks I guess. ","created_at":1759331840,"id":"4d59385cf20ce534a3fcf954ee9194b479f133ef43285d3181853ccdbb693f42","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"cd70fd324501ea458496cc07f826b8886dbe7ac1ca2be3279faaa0be220d8d00c2a2e5fa50cc1eac5ec94902c9dcc9e73d49e1f019fab4789d1d46366ef1c712","tags":[["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef","","root"],["e","cae2cd0f5d740ce5b4aa0abc44d3d72fdfcd6aef4561672762af681429b292cc","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","c7fbb1527ad3dc10221c69934bc1e7e4c18dd56366ddf876eb0c2e1377513794"]]}] +[11:17:22.529] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🎲 [ #Betstr ] Your One-Stop Shop for the Latest Odds 📊 \nhttps://image.nostr.build/19a1d3dc9d6f92101bccc3f48c918e182a291e4475e3683f2d1d7347b3f476a7.jpg\nâš¡ LN log iN 📈 LiVE Markets📉 Trade the Future 📊 GeT 1000 Bonus #Sats to try OuT nostr:nprofile1qqs2fvyqh4902w82pcps0l820yfndgw2hhkn09yf3l0z696d2fd63aspzemhxue69uhkummnw3ex2mrfw3jhxtn0wfnj7dp6qgv 🤑 https://beta.predyx.com/?ref=PREDYXV3RCZB39 ","created_at":1759331836,"id":"d8e54309342ebc5dc6150ccf00aca27443abe5bf16e0a9894577e205c13f0919","kind":1,"pubkey":"0403c86a1bb4cfbc34c8a493fbd1f0d158d42dd06d03eaa3720882a066d3a378","sig":"70c8ea054f7667f73e8dea9abd4546c791feab66bb52609a9cb7c5ccfff901ad8a9a307ab4580dbee81e45c88f862e4d13a72447764777ea90eafb26a375dc28","tags":[["alt","A short note: 🎲 [ #Betstr ] Your One-Stop Shop for the Latest O..."],["p","a4b080bd4af538ea0e0307fcea791336a1cabded3794898fde2d174d525ba8f6","wss://nostrelites.org/"],["p","a4b080bd4af538ea0e0307fcea791336a1cabded3794898fde2d174d525ba8f6","wss://nostrelites.org/"],["t","Betstr"],["t","betstr"],["t","Sats"],["t","sats"],["r","https://image.nostr.build/19a1d3dc9d6f92101bccc3f48c918e182a291e4475e3683f2d1d7347b3f476a7.jpg"],["r","https://beta.predyx.com/?ref=PREDYXV3RCZB39"],["imeta","url https://image.nostr.build/19a1d3dc9d6f92101bccc3f48c918e182a291e4475e3683f2d1d7347b3f476a7.jpg","x d07ab3495fa28adacbc04cfc66ab30d150701ba30c6e2d6b23d33e6bd14bca30","size 173965","m image/jpeg","dim 1080x1920","blurhash ]C8NkWoMIUt7Rj8}WAxuWBt7-ss;WAaeWU%5WBWAf6WBIEWBs:oet6_4ofM{j?Rj9HWBtQWBof%4t7axWBjsohV[aeayWB","ox d07ab3495fa28adacbc04cfc66ab30d150701ba30c6e2d6b23d33e6bd14bca30","alt "]]}] +[11:17:29.242] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"after having touched the third rail this morning, I feel compelled to share my own J pill story... a couple years after 9/11/2001, I had a profound discussion with one of my neighbors... turns out that he was a new york Jew and grew up in the bronx... we have since built a strong relationship and regularly meet for coffee and worldly discussions... more than any other person, he has opened my eyes and pulled back the curtain for me to see what is really going on... he J pilled me... and helped me remove the blinders that were covering my eyes from the truth.\n\n I am grateful for his wisdom and teaching, but it is also a painful truth... the kind of truth that most have been conditioned to avoid and sidestep for fear of being labeled an \"antisemite\". I would call it one of the ultimate red pills, because once you've taken a J pill, you will never see the world in the same light... he has given me great, behind the scenes insights into the Jewish people and culture... and my mind feels liberated by it... I welcome you to join me, and take a J pill, as it will help explain many of the current events and issues taking place in our world. peace to you\n\n https://blossom.primal.net/01f497ef5b98ef8a9ac48e40d65fa3c3c866ad17a1d3f2431372a5badb62754c.png \n\n#jpilled\n#afewthoughts","created_at":1759331846,"id":"231c8c8142caa0fda565a526a76d23391260912f62b592e8a0ebd1d554c76725","kind":1,"pubkey":"3663a0e0adb2b3b173e673d613917f5dc2b21de321caea0dd1b28e96905df846","sig":"53331395e9e3c70aff59a9ced7778d3bbca29899601c63dd6b0d23e607981a2fff05e64d59415a7f25a70e3039c9d9aa3b6ffb94f306a14e0678109ce1c95529","tags":[["t","jpilled"],["t","afewthoughts"],["r","wss://nostr.wine/","read"],["r","wss://nos.lol/","write"],["r","wss://nostr.bitcoiner.social/","write"],["r","wss://nostr.mom/","write"],["r","wss://nostr.oxtr.dev/","write"],["r","wss://relay.noswhere.com/","read"],["r","wss://relay.primal.net/"],["r","wss://relay.damus.io/","write"],["r","wss://relay.nostr.band/","read"]]}] +[11:17:42.449] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"BTC rose above $117,000 as stocks slipped after a U.S. government shutdown, reaching a two-week high. Up about 3.6% in 24 hours and 7% since Sunday.","created_at":1759331742,"id":"14726bd74ceb4d92451ed906ad67f57c200aa6347f7db1a1ab56fca9753768bf","kind":1,"pubkey":"81b26cb98224311ea520a9042bf9c7cc78d2725d0a99f9797afd9a8a35970aaa","sig":"f017f0988452238870d8e1ffc8cc90423d81fdbbffc178ddbfebede3d1df9e50bcdf815a1f9f0fff5f1166de522233763b2a88ebbbf739220af4c17b6bac3970","tags":[]}] +[11:17:51.069] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"â€œå¹´è½»â€æ˜¯ä¸€ç§ç¤¾ä¼šå»ºæž„出æ¥çš„æ¦‚念。\n\n更准确地说,社会建构出æ¥çš„,是对“年轻â€çš„那个时间段的无é™è¿½æ§å’Œæ— é™ç¾ŽåŒ–。其实,无论是5å²ï¼Œè¿˜æ˜¯95å²ï¼Œæˆ‘ä»¬çš„ç”Ÿæ´»éƒ½åƒæ˜¯ä¸€è¾†åœ¨ä¸‡èŠ±ç­’é‡Œè¡Œè¿›çš„ç«è½¦ã€‚æ˜¯çš„ï¼Œä½ çš„å‘¨é­æ˜¯ä¼šä¸æ–­å˜åŒ–ï¼Œä½ ä¹Ÿä¼šä¸æ–­å˜åŒ–,但并ä¸ä¼šæœ‰ä»€ä¹ˆç‰¹å®šçš„让生活çªç„¶å˜å¾—æ›´æœ‰æ„æ€æˆ–è€…æ›´æ²¡æ„æ€çš„çªå˜æ—¶é—´ç‚¹ã€‚\n\n当然,生命中会有开心的时候,也会有难过的时候,但快ä¹å¹¶ä¸æ˜¯é”™è¿‡äº†å°±ä¸èƒ½å†å›žæ¥çš„。无论你多少å²ï¼Œä½ éƒ½å¯ä»¥åŽ»å¯»æ‰¾ä½ çš„å¿«ä¹ï¼ŒåŽ»å¯»æ‰¾ä½ çš„æ„ä¹‰ã€‚æ‰€è°“çš„â€œå¹´è½»å²æœˆâ€ï¼Œä¸è¿‡æ˜¯ä½ è¿˜æ‡µæ‡‚无知,然åŽåšä¸‹äº†æ— æ•°æ„šè ¢å†³å®šçš„那个阶段。放轻æ¾ä¸€ç‚¹ï¼Œé‚£äº›äº‹æƒ…在之åŽçœ‹æ¥ä¹Ÿéƒ½æ²¡ä»€ä¹ˆå¤§ä¸äº†çš„。并没有什么“年轻â€çš„æ—¶å€™é”™è¿‡æŸä¸ªäº‹æƒ…,就一辈å­éƒ½ä¸èƒ½å†åŽ»åšé‚£ä¸ªäº‹æƒ…了的é“ç†ã€‚\n\nä¸è¦å†ä¸º17å²çš„æ—¶å€™æ²¡æœ‰åŽ»æˆéŸ³ä¹èŠ‚è€Œæ‡Šæ¼äº†ï¼ŒçŽ°åœ¨å°±åŽ»å®‰æŽ’ä¸ŠéŸ³ä¹èŠ‚çš„è®¡åˆ’å§ã€‚ä½ å·²ç»è¿‡åŽ»çš„â€œå¹´è½»â€ï¼Œå¹¶æ²¡æœ‰ä»€ä¹ˆç‰¹åˆ«ä¹‹å¤„。åªè¦ä½ è¿˜æ´»ç€ï¼Œä½ å°±è¿˜æœ‰å……足的时间去åšé‚£äº›ä½ æƒ³åšçš„事情。一切都还æ¥å¾—åŠã€‚ä¸€åˆ‡éƒ½è¿˜ä¸æ™šã€‚ ","created_at":1759331871,"id":"8a37abd4eb2d5ba937fac89547c1e8bc8819a79e856eaa16a5282eb1dd63a822","kind":1,"pubkey":"55b8d3b26f180ceb6b255d9143328f0731ff2a8f4d9acbf746a0ed9f8ac5c0ec","sig":"11d6476518927980849b086f7b5f1c12b71bed1689cf7ad6b9f1acce5e839e25012d48258c077dda667c1f8658a965f3187b0e45531918bb527a8106b07f224d","tags":[["alt","A short note: â€œå¹´è½»â€æ˜¯ä¸€ç§ç¤¾ä¼šå»ºæž„出æ¥çš„æ¦‚念。\n\n更准确地说,社会建构出æ¥çš„,是对“年轻â€çš„那个时间段的无é™è¿½æ§..."],["r","https://ä¸è¦å†ä¸º17å²çš„æ—¶å€™æ²¡æœ‰åŽ»æˆéŸ³ä¹èŠ‚è€Œæ‡Šæ¼äº†ï¼ŒçŽ°åœ¨å°±åŽ»å®‰æŽ’ä¸ŠéŸ³ä¹èŠ‚çš„è®¡åˆ’å§ã€‚ä½ å·²ç»è¿‡åŽ»çš„â€œå¹´è½»â€ï¼Œå¹¶æ²¡æœ‰ä»€ä¹ˆç‰¹åˆ«ä¹‹å¤„。åªè¦ä½ è¿˜æ´»ç€ï¼Œä½ å°±è¿˜æœ‰å……足的时间去åšé‚£äº›ä½ æƒ³åšçš„事情。一切都还æ¥å¾—åŠã€‚ä¸€åˆ‡éƒ½è¿˜ä¸æ™šã€‚"]]}] +[11:17:51.212] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,249\nBlock Hash: 00000000000000000001d8bb021fd9e7f8bb5cd493bed2bcf455f2d5bc81ff0a\nTimestamp: 2025-10-01T15:17:17.000Z\nTransactions: 3,017\nBlock Size: 1.55 MB\nBlock Weight: 3,993,862 WU\nDifficulty: 1.42e+14\n\n#Bitcoin #Blockchain #Block917249","created_at":1759331871,"id":"beac0e8cb98c5ebf2a8acd8236d69578bd2a116fd3bcfe504da5375bcda45b27","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"fc76e749d2b2abd874791769cc468570240d2673ba1f4e5602dcd6baf6149087e9d85a88c58ef7c7848b577265f402a9ed0c0479e61bb2c74165ca332489a3fd","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917249"],["published_at","1759331837"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001d8bb021fd9e7f8bb5cd493bed2bcf455f2d5bc81ff0a"],["new_block","true"],["block_height","917249"],["block_hash","00000000000000000001d8bb021fd9e7f8bb5cd493bed2bcf455f2d5bc81ff0a"],["block_time","1759331837"],["tx_count","3017"],["block_size","1626313"],["block_weight","3993862"],["difficulty","142342602928674.9"],["previous_block","00000000000000000000e781b292ac326b78a46d27ec8316e3d2814bff240d95"],["mempool_tx_count","967"],["mempool_size","295675"],["memory_usage_pct","0.5"]]}] +[11:17:53.660] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"agreed.. it should preferably be split up in a couple of episodes to spend more time with each individual topic","created_at":1759331873,"id":"ca9bf2ed477cbd888e60ec30681a8f92b64bd9fc23be4005a21d26027c88ba27","kind":1,"pubkey":"84659c5e4dbff288ac294b22e2cff54b5af8e2d2071985859298160de5211dd8","sig":"791e1aa5862638a304e1eade656827bd8dd350cc1797ccf52efb3427d6415dd5b669c444dd56e5d94fb4c21529c755c54fc8ca02bd56e13abef4e3ed904ff1e0","tags":[["alt","A short note: agreed.. it should preferably be split up in a cou..."],["e","540aa42f8ea5706f955454ea24742aca7afab041f3c222a3a43352e8eaf1609c","wss://nostr-01.yakihonne.com/","root","ba2f394833658475e91680b898f9be0f1d850166c6a839dbe084d0266ad6e20a"],["e","373cab99dab791ba0bbe81dc7819eab12d43d075fc0196c032f8743caa10fa93","wss://nostr-01.yakihonne.com/","reply","8d5ba92c8cca3d5c7392f0393ab15bd0fc6f634325b451541e0f7c9ac6c3ecd5"],["p","a575282dbd9093a43aa1fb07a156c1c74cb67e3778a4d6510e3acc7e70346e86","wss://purplepag.es/"],["p","a575282dbd9093a43aa1fb07a156c1c74cb67e3778a4d6510e3acc7e70346e86","wss://purplepag.es/"],["p","ba2f394833658475e91680b898f9be0f1d850166c6a839dbe084d0266ad6e20a","wss://relay.primal.net/"],["p","8d5ba92c8cca3d5c7392f0393ab15bd0fc6f634325b451541e0f7c9ac6c3ecd5","ws://a.nos.lol/"]]}] +[11:17:56.065] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"NOW – Speaking at Climate Justice conference with Pope Leo XIV, Arnold Schwarzenegger shares how he got Californians int…\n\nFrom Disclose TV\n\nNOW – Speaking at Climate Justice conference with Pope Leo XIV, Arnold Schwarzenegger shares how he got Californians interested in climate change, using an advert with “a little kid trying to inhale… and then this child faded… we got to talk instead of the brain, we got to talk to the heart.†@disclosetv\n\nOct 1st 2025 10:58am EDT\n\nSource Link: https://t.me/disclosetv/17958\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1043695","created_at":1759331815,"id":"92b7d8680526dae656161931d86d2527b59bc45391519b9f58592a1d6607a1df","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"e5bc1f84eb4f288c696c4bc728305558cd1fcffbbde52da18ee305ac42173d82785e1a81a3f5166cc0b3e65de36cc3aac4f83d00386ff6ef2c5e453d10b33a06","tags":[]}] +[11:17:59.471] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#Electronic Arts is set for a roughly $55bn takeover by a Saudi-led consortium, with Jared Kushner reportedly indirectly involved. The deal would be the largest leveraged buyout in the sector; it still awaits antitrust approval. EA shares and the gaming sector rose, while Take-Two gained on hopes around a new GTA release. #EA #TakeTwo #FiatNews","created_at":1759331860,"id":"3bfbdcead168af2d7479b99af9e2f138e99c95ad079ae5c356c01c9bcbe94dcd","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"1b69eaea19be1769d2429d895ef8c2a032584008e6e50184c8b6e45194551df945ca0acf8ef3b9f443352434391722203653e4cbcf9786b5eab67c2a1e98b3a1","tags":[["t","Electronic"],["t","electronic"],["t","EA"],["t","ea"],["t","TakeTwo"],["t","taketwo"],["t","FiatNews"],["t","fiatnews"]]}] +[11:18:01.847] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"完整版在这,å¯èƒ½éœ€è¦æ¢¯å­ï¼Œæœ‰ç‚¹sm倾å‘😇\nhttps://www.634.tv/index.php/vod/play/id/188514/sid/1/nid/1.html","created_at":1759331805,"id":"0ee9bab2af981edf00eb6118bb51cac2c03423d625650e3bfffcaff1e506a1a9","kind":1,"pubkey":"6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","sig":"c038ffdb72785d2bc87f06336743a21f33d5992155ddbc8782b44bf01e27fc671edd58df5f9ee831c29e0cc6b0a58759fd8a9fc64cbe717c2bdd64d41f80a7e3","tags":[["alt","A short note: 完整版在这,å¯èƒ½éœ€è¦æ¢¯å­ï¼Œæœ‰ç‚¹sm倾å‘😇\nhttps://www.634.tv/index.php..."],["e","0d635057c34b6bf37f599594d1c48cca4db694f1971a582bc0ba8a01ee4228df","wss://bostr.shop/","root","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","37311a7bbb666423f205923e3d8ff352e41eba5f5155a50f735ff3c2f370a008","wss://bostr.bitcointxoko.com/","","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["e","359dbb33d47dc670e3dafea63f0028baaf20729fa661fe40f77a746643367180","wss://relay.nostr.net/","","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","8dd8b65377661d7ddafe37fed9c6f52335c37af91fde5fdd2d06aba06558a0e4","wss://bostr.bitcointxoko.com/","","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["e","c5685fc9e119e24613d2279c714f7c09e2d9016f2af9d9be7d5227de5db1ce63","wss://relay.nostr.net/","","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["e","cb6f58d4ce208d30c0456eadcf80d0b191bf3da1156b4d2cf38eb5b3483dfa3d","wss://bostr.bitcointxoko.com/","reply","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","wss://bostr.shop/"],["p","dbbd7125eaead5470fa0f1c8e148fc866a0e0a24756d9e9964810d9007ff73f8","wss://bostr.shop/"],["r","https://www.634.tv/index.php/vod/play/id/188514/sid/1/nid/1.html"],["content-warning",""]]}] +[11:18:02.852] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"IndyCar champion Pagenaud working on Cadillac’s F1 simulator programme for 2026 debut | Formula 1\n\nSimon Pagenaud says working in Cadillac's F1 simulator makes him 'feel useful' again after being sidelined through concussion in a heavy crash two years ago.\n\nRead more: https://www.racefans.net/2025/10/01/indycar-champion-pagenaud-working-on-cadillacs-f1-simulator-programme-for-2026-debut/","created_at":1759331882,"id":"4613a0dbf1e94888e7ef510e598898ffcf31e4ee8f63cd9d8899eb1666781d56","kind":1,"pubkey":"5ddcd4fa6c18807394359d442e6e8a97e4cb201da147aca250807b39aa2191f6","sig":"65f22d17ed78403ccb97e909f3fec1a126b2a808217a7c37f5e753dbd9557774d91189c8ea6801270cf29b0825711081b0432a34177d1f7311752b4ca24b4822","tags":[["t","sports"],["t","newsbot"],["t","sportsbot"],["t","rss"],["t","racefans"],["t","f1"],["t","formula1"],["t","f12025"]]}] +[11:18:03.880] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"+1","created_at":1759331884,"id":"2fc5df3c9226d45346402edd8aa2009d066668ff438f3af345c607ed38240925","kind":1,"pubkey":"dab9562a4b156617923fb2bb31d59bab075ffa5f1f885a811fba468cba18162e","sig":"348bcaa7c17b201a3dfe2a88efecf1f429a25bb9b60055aae433f19219852039deaae11f1661450fbd17c0344be9362bbe73237d982aba9eb4e55e3ab83042cf","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["e","e253910cdd0cba1fa1acbea7dae58893f93792386b05224a7fef32fb6b3b6554","wss://bitcoiner.social/","reply","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:18:05.673] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"real talk","created_at":1759331885,"id":"43fabf593bde82cc96e89d8dddb9ec711672f5baa2d2748257132ded586016e2","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"1e46b17f7727750d0bc436e7de3744cb601c6a6e94d406595c8e2a54d7ace177daf5ad13d57d4186b0e3ed9d28eed42b8d68e770f3360060f7990d9ea2da7992","tags":[["e","64e6102e8ffe1fac20fb5bb416344937b803a3748478c06eab1e5e5b5dc9e42c","","root"],["p","47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3"]]}] +[11:18:10.143] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Me too. I never found myself willing to share myself elsewhere. I was just lurking around. ","created_at":1759331889,"id":"84ec9de84cb55b51a6c418d116c72585b2008dd28dbf1ed983d9d138b3da5314","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"457fbd9551c04a04a061c6611e4739366fb37f59490ae6ef2ca78f7634d5d98ada20f3a4fd8b3f6e0717dd5a0045881da11469e80f77c69c6fc47cbd7dd62b47","tags":[["e","2279b6a19b2bb2e6f8b05242ea36a99a7ca16564eb7ea3c0c2b03aad3724d830","","root"],["e","4af3a880a7766936340e20be1cb08bf359a80d1ed3c5085acbc3df3788febbf8"],["e","b78c1f5920872b007d319e0876ff796220167ec5a18df01a0075ebd2b0ab33ce","","reply"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6"]]}] +[11:18:10.176] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"💯 already feeling that with Nostr. It’s an exciting feeling that I’ve never had about any other social media… ","created_at":1759331691,"id":"b78c1f5920872b007d319e0876ff796220167ec5a18df01a0075ebd2b0ab33ce","kind":1,"pubkey":"d2f2fd0c55b8c95dd33574186c1bb38ff6fe3e3b85e18230bcdc24262728fdc6","sig":"957f08ff9611bc2eb5cd9389e3b724fbe98d7c3121cb419314ce15e36f96f3b9743fcdcd28f2c9ddbe153b60424b84420884b2e6266d2d02b2a1efa3158ec6b9","tags":[["e","2279b6a19b2bb2e6f8b05242ea36a99a7ca16564eb7ea3c0c2b03aad3724d830","","root"],["e","4af3a880a7766936340e20be1cb08bf359a80d1ed3c5085acbc3df3788febbf8","wss://relay.primal.net","reply"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","","mention"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","","mention"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11","","mention"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","","mention"]]}] +[11:18:19.001] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Stats:\nkeys: ","created_at":1759331898,"id":"a060e7e69552b890a4112f7e9bed6c68c1bd38363c53af6f4f2f81f04f6a3d97","kind":1,"pubkey":"fbc0f31fea6e7fa905f006d4489afc7d7a6a1edfaf88a0854dc5faba98126f12","sig":"a8845e4d06d29680427149f8f3bcde895b8d5fad798f36b06930e268ba2851dce9590f517618571454101a4dffbc51aac079cd1e8ade5f5cdffdf853003dc5d5","tags":[["t","keycrux"]]}] +[11:18:20.967] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 Laureát Ceny Václava Havla ButkevyÄ v Praze hovoÅ™il o ruském zajetí: \n\nPraha - LetoÅ¡ní laureát Ceny Václava Havla Maksym ButkevyÄ v Praze zdůraznil důležitost svobodné volby a lidské důstojnosti. Ukrajinský novinář byl v roce 2022 zajat Rusy a odsouzen k 13 letům vÄ›zení.... \nhttps://www.ceskenoviny.cz/zpravy/laureat-ceny-vaclava-havla-butkevyc-v-praze-hovoril-o-ruskem-zajeti/2728358 \n#CzechNews #News #Press #Media","created_at":1759331881,"id":"159e77b3e60f05d4ffd0fb7051361cb1f2285d58d9a4a1d73f3fe9967b4f7bc5","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"f8ee43d7a5885c631491e34e3059329a70ba43950c19fe563162b93b10859c01f64d83363bf28a74a2eb3807bdaf96d9cb0392f408cab7b8d093d9cf6e7316a5","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:18:48.386] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Double digits where it's at, the modern flex in a world where having pets is the alternative given rising costs of living. ","created_at":1759331927,"id":"b071bed518f1e36478b247c51b48e437890231727d569091ba8f8a65b04609ad","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"d6b2028f15891db3912ce76e4caaabd000d8cfe2c7c74f2a5ba0fc681434b6158e8d4e0cec38ab1d15f207fc4d1118aa8ae1b17eac480e6f2f58becd983d568c","tags":[["alt","A short note: Double digits where it's at, the modern flex in a ..."],["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","wss://relay.damus.io/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","0a4bb1ab6b070779551c75e82f4ab219e72a868d724b127088e83b1e87ccea7d","wss://nostr.mom/","","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731"],["e","c4fe9445aeacf1fa7088f3b877da99415c231511b8e1326163145e4280344300","wss://relay.damus.io/","reply","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","wss://relay.damus.io/"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","wss://relay.primal.net/"]]}] +[11:19:04.866] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Sometimes I worry about what to post. Then I remember I’m a guitarist, it’s nearly 4:20, and music is good. \n\nhttps://f.strangetextures.com/audio/@hc/encoded-within-a-thousand-suns.mp3","created_at":1759331944,"id":"17229c61b9a0e2c7f7b41c443c10af210f314bc1991a302035861de5ce494c9c","kind":1,"pubkey":"235b53a1017d7bb656c1258db54a0c9563e4ccd8cea66b650659d6d3df299127","sig":"068c2387cf9f3aaeebe46abd1a9ab7904caf94fc5846af99a03ede68917907effedd3f667d1dbf0f3383a59686afbff19c8faef3a226199f24aa4acf8ab20b88","tags":[["r","https://f.strangetextures.com/audio/@hc/encoded-within-a-thousand-suns.mp3"]]}] +[11:19:10.790] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"How do you know \"the day\" just started?\n\n-retarded guy","created_at":1759331949,"id":"3aa953391f7bad2c8f953d957f758d0f61a0b69d3afb9c689dc6b03933804d66","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"c4bfd709bd0823042b7f39d07ca8982bb6537a308461d982ca96c622b79537f8c57af0a50ebec81af0ccb1eb0246196bffe28c0bbb7c65a0a375843314c8e053","tags":[["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef","","root"],["e","cae2cd0f5d740ce5b4aa0abc44d3d72fdfcd6aef4561672762af681429b292cc","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","c7fbb1527ad3dc10221c69934bc1e7e4c18dd56366ddf876eb0c2e1377513794"]]}] +[11:19:18.091] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 NadÄ›je na mír v nedohlednu. Hamás (nejspíš) smete Trumpův plán pro Gazu: \n\nPodle amerického prezidenta Trumpa má Hamás na pÅ™ijetí návrhu tÅ™i až ÄtyÅ™i dny. \nhttps://zpravy.aktualne.cz/zahranici/hamas-zrejme-odmitne-trumpuv-mirovy-plan-pro-pasmo-gazy-pise/r~a4f686c89ed411f0a26cac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759331938,"id":"8cf68838e23793c149f53438d0e2defa11dc3fd2fe1f36a44b4f44a35a603754","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"8197f63e635ec37fd4e59865dabe5f7bc0f502815b3986a3e9fd446fa1c6e3c77772fdb02ce6bb305f30b62655bb2f6436231f226bd0039ae1b64012aac7c49c","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:19:20.509] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"fun fact: the bible is also available in english if you do not read greek or hebrew.\n\nhttps://image.nostr.build/f70b8038a27525d796cafe1c1c934337ffdef06e69743605c5c4420ef7da580c.jpg","created_at":1759331959,"id":"b3e15588d743c4f162afe403bff8aded9f39314059900ff8c1c299a008b7a39b","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"01e687202b76a68412b640d7e3fa027586268e664a48cc578c43a80528f09e9a2b67dbcf5e39deed6dfeeddb86ce77828b2a226432ea7adcaedb92839ba56b24","tags":[["e","19a46da2ba504b26d2797e62baed7dba7444429576283302d015ff34d3bce589","","root"],["e","69400f962b23a81a1de5bc76793f81abd103ee80fe83f606c26a2d811306794e","","reply"],["imeta","url https://image.nostr.build/f70b8038a27525d796cafe1c1c934337ffdef06e69743605c5c4420ef7da580c.jpg","blurhash eLH24bRO8^xtD%DhI@%2NGt78wbw?aoe%L~VM|RPNbNG9GIrxtNGof","dim 3024x4032"],["r","https://image.nostr.build/f70b8038a27525d796cafe1c1c934337ffdef06e69743605c5c4420ef7da580c.jpg"]]}] +[11:19:26.816] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Thank you, sure I will :)","created_at":1759331965,"id":"52524e37e1437568ce8a21cf5177b9f58623ec37e1974e61547a30b8da1dc736","kind":1,"pubkey":"7c643a99666fa8d2f99547afa22e0d5bf74627e9066a6d8add055d933aa341d0","sig":"3d3ef92f9b48a037d29094911d6d8343f6d42f4e57c2cd6fdc7f6132ca2a369b62ef22dbd01171c41f4f7838f56378bf718b78e6b43951c06a4ed554c70f281f","tags":[["alt","A short note: Thank you, sure I will :)"],["e","5362bf93524e6e341775cadf70c5f9857390f9608fd18dc00df6f2cc026aa9d9","wss://zap.watch/","root","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["p","7c643a99666fa8d2f99547afa22e0d5bf74627e9066a6d8add055d933aa341d0","ws://194.195.222.47:4848/"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.primal.net/"]]}] +[11:19:42.943] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Animal tax coming soon. ","created_at":1759331949,"id":"5e4f79773044c1a0dffe2712907f9185e3f40922d650ebac93c8b1fa43ad3f16","kind":1,"pubkey":"22fb999c62a34f5ff68c31d5e94125b06043feab09a436b26fea772fcb30f940","sig":"849fc5629bf6313c2511640c9fc9835dd549ee7503fd4d13157742023322887db4fad1d6465d3a44eb1d0da446294e373d77efcf348755ee6aa3b1fe5a786309","tags":[["alt","A short note: Animal tax coming soon. "],["e","545071e7f5df78f101cb0ceb7193de3adc798a3edea511eef437e9f09b7922a0","wss://relay.mostr.pub/","root","7c765d407d3a9d5ea117cb8b8699628560787fc084a0c76afaa449bfbd121d84"],["p","7c765d407d3a9d5ea117cb8b8699628560787fc084a0c76afaa449bfbd121d84","wss://nos.lol/"]]}] +[11:19:45.118] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GM","created_at":1759331984,"id":"903cd76cb88a6f661db1de43fbf075421c67b4d62da8488b26e8815c48ee8a91","kind":1,"pubkey":"ff2f4cd786e42b4323749c91517ec7baf22dfd035b7a101bea83b6e2bcbacd15","sig":"200ad9520397db70bfe507c79ae2065260848eb489153fed1870eec73a90b28c9f05e29c03d8cbed47abe5403226cc1ea92d4615ce18930b67d0cfc8cda7d5cd","tags":[["e","339088313ab40eb193837a56fcf42626e5da3b4ecdc089a2754e12bb734162b6","wss://@nos.lol","root"],["p","4e933e6215409318999879219f9e4a32b3f675af8427a364a86f95b592bef2ce","","mention"]]}] +[11:19:46.834] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GM â˜•ï¸ \nConfidence isn't about never facing setbacks but about how we rise from them. \n\n","created_at":1759223143,"id":"339088313ab40eb193837a56fcf42626e5da3b4ecdc089a2754e12bb734162b6","kind":1,"pubkey":"4e933e6215409318999879219f9e4a32b3f675af8427a364a86f95b592bef2ce","sig":"d1d7206cf6bbda59be826dcce96e9bd97ca389a2ddf18f78b176eee79c81f81174d1dd7456c3e1e0a41207c3fa302b90346ef941247ee3cde17a58234a4718b3","tags":[]}] +[11:19:50.615] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"[trad Deepl]\nSe ha implementado una nueva versión experimental de «notas agrupadas» en https://grouped-notes.dtonon.com.\n\nCaracterística clave: se muestra el estado de lectura tanto de la última nota como de todas las notas, por lo que puedes realizar un seguimiento sencillo de lo que ya has visto y de las novedades; además, el contador se restablece cuando un perfil se marca como leído y llegan nuevas notas.\n\nOtras novedades:\n- Se ha añadido una nueva opción para incluir respuestas.\n- Solo se muestra el contenido del periodo de tiempo seleccionado al marcar «otras notas del mismo usuario».\n- El modo de notas agrupadas y su configuración se mantienen al recargar la página.\n- El modo compacto ofrece una experiencia radicalmente nueva, por lo que ahora es el predeterminado.\n\nGracias a @fiatjaf, @idsera y otros por sus sugerencias y comentarios.\n\n\n\n\nnostr:nevent1qvzqqqqqqypzq77777lz9hvwt86xqrsyf2jn588ewk5aclf8mavr80rhmduy5kq9qy88wumn8ghj7mn0wvhxcmmv9uq32amnwvaz7tmjv4kxz7fwv3sk6atn9e5k7tcqyr8fdvdex93zhntphyq3vztrnmd99vdxqyku7ycucts7njz70w65g30tlew","created_at":1759331987,"id":"005bf2cd2f11a5b22fb9e1add1718045e7df1daccbfd5443fd298bdfe460378e","kind":1,"pubkey":"ece127e2f8936d0653678fed0bd89dbd246b135c07028586f9dc06af745bab9c","sig":"fbb853053e5cc65dd3fe19a51bcc3ff2c7f5029b3a85b79b8888586d171e9ed3e00f67bb3b9eba18a35e98ba36f286a2a1edc906adbf476f775d0701140ba671","tags":[["q","ce96b1b931622bcd61b9011609639eda52b1a6012dcf131cc2e1e9c85e7bb544","wss://nos.lol/"],["p","7bdef7be22dd8e59f4600e044aa53a1cf975a9dc7d27df5833bc77db784a5805"],["client","jumble"],["nonce","127","9"]]}] +[11:19:55.467] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"How could she not?","created_at":1759331995,"id":"f7f57801d10b85b2133082fd5f695f4c75d68e3be436117cdb3e8f7164f5b53c","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"d38be9b06726fed84d54a81ff13228f634fd0a16981aad4ac25cce0c740653b3b42fc17e0efe1a46a8110b25e737395ee8a45fdcd80a68fbbd1ec4f7704ab053","tags":[["alt","A short note: How could she not?"],["e","b17a386e072a0f82779de3eae3086851949f63bd57e97eb25ef07556397057a2","wss://relay.primal.net/v1/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","63a49d481bcf4d29dcd97af4bdda88c323cde2cd2ba8def052147ccbf721f9af","wss://btc.klendazu.com/","reply","ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"],["p","ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","wss://at.nostrworks.com/"]]}] +[11:20:02.494] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"How could she not?","created_at":1759331995,"id":"f7f57801d10b85b2133082fd5f695f4c75d68e3be436117cdb3e8f7164f5b53c","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"d38be9b06726fed84d54a81ff13228f634fd0a16981aad4ac25cce0c740653b3b42fc17e0efe1a46a8110b25e737395ee8a45fdcd80a68fbbd1ec4f7704ab053","tags":[["alt","A short note: How could she not?"],["e","b17a386e072a0f82779de3eae3086851949f63bd57e97eb25ef07556397057a2","wss://relay.primal.net/v1/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","63a49d481bcf4d29dcd97af4bdda88c323cde2cd2ba8def052147ccbf721f9af","wss://btc.klendazu.com/","reply","ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"],["p","ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","wss://at.nostrworks.com/"]]}] +[11:20:02.992] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"nostr:nprofile1qqs2dt0f0a2unymz2dyg549ju9r5sy0wjlxap57rhusqpw69ghc365spz9mhxue69uhkymmnw3ezuumgdacz7qgawaehxw309a3x7um5wghxy6t5vdhkjmn50phkkmewvdhk6tc78mves 介ç»ä¸‹è¿™ä¸ªbestè£…ç½®çš„ä½œç”¨å’Œæœ€æ–°è¿›å±•ï¼Œäººç±»ç¦»å¯æŽ§æ ¸èšå˜é‡äº§è¿˜æœ‰å¤šè¿œï¼Ÿ","created_at":1759331990,"id":"f8a4d4acb4945be694a75dd5c16493c316cec4a3ebbf4c378667f91a3bc99f3e","kind":1,"pubkey":"6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9","sig":"cad026b55bab7ba5825fbd173fd75526cf048a94ad1014eff4c35b35896bd1309412da2c8e0fc01eb49a6edb62feefe2a4a5031619398f685c4237d96912b53f","tags":[["alt","A short note: nostr:nprofile1qqs2dt0f0a2unymz2dyg549ju9r5sy0wjlx..."],["e","a40fd3854c7299723851d8a54beb826ed8f67a96d83d4c94609196960f2b871a","wss://news-zh-node2.relay.stream/","root","b058cbb57a3838f3482ae25bb1562ec1dabf8774308771f7b1466bd3e05f1018"],["p","b058cbb57a3838f3482ae25bb1562ec1dabf8774308771f7b1466bd3e05f1018","wss://relay.stream/"],["p","a6ade97f55c9936253488a54b2e1474811ee97cdd0d3c3bf2000bb4545f11d52","wss://bostr.shop/"],["p","a6ade97f55c9936253488a54b2e1474811ee97cdd0d3c3bf2000bb4545f11d52","wss://bostr.shop/"]]}] +[11:20:07.047] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GM 🫡","created_at":1759332006,"id":"3507206386ce940d0b75c81027650803e23d9235b0f3222887b32f50934d2027","kind":1,"pubkey":"ff2f4cd786e42b4323749c91517ec7baf22dfd035b7a101bea83b6e2bcbacd15","sig":"1c1c346c1bce8a62bb04521126dfdb23c53d2f20cce5f29cfecf2e32604a0f5c63f6f4e5f7491f64ee381b878d84cc185fc3af2b48744786c76f5bf5b8340aff","tags":[["e","bbfeffd658bdb5e485ffaf8c986c93a8fdb71b3df55376920d82479de62aa914","wss://relay.primal.net","root"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","","mention"]]}] +[11:20:08.533] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GM! Stay humble & hash sats! â›ï¸","created_at":1759330245,"id":"bbfeffd658bdb5e485ffaf8c986c93a8fdb71b3df55376920d82479de62aa914","kind":1,"pubkey":"5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","sig":"c2ea9efdeca917a883d5776090d1ed3f165b5a5d2fd934b3c8574ee028a186d6a39b3b1363b6362823ca431d0cb6e6762fc4c2971f413882407231d881e33749","tags":[]}] +[11:20:15.160] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 V BerlínÄ› zadrželi muže podezÅ™elé ze Älenství v Hamásu, chystali útoky: \n\nPolicie v BerlínÄ› zadržela tÅ™i muže podezÅ™elé z příprav teroristických útoků a ze Älenství v teroristické organizaci Hamás. Informovalo nejvyšší státní zastupitelství v Karlsruhe, podle nÄ›hož trojice shánÄ›la zbranÄ› pro útoky na židovské Äi izraelské cíle v NÄ›mecku. \nhttps://ct24.ceskatelevize.cz/clanek/svet/v-berline-zadrzeli-muze-podezrele-ze-clenstvi-v-hamasu-chystali-utoky-365626 \n#CzechNews #News #Press #Media","created_at":1759331995,"id":"5b4b98ac5145fcf4b46cf158206ae3d5acec98d220fe90ecdb1a333b6a285ece","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"79c1e5e9ee19f1b7de1307438ed9a14028c38b644f701a04a02333fc95c2ab15e19a523b20e7f658c665979058d9a2127696c9f26a485201988d57588f8b0d5d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:20:31.181] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔥 BLAZE IT! 🔥\n\n🌅 It's 4:20 AM in:\nAmerican Samoa, Jarvis Island, Niue, Phoenix Islands, New Zealand, Samoa, Tonga\n\n🌇 It's 4:20 PM in:\nLondon, Lisbon, Reykjavik, Canary, Monrovia, Accra\n\n🔥 Time to blaze! 🔥\n\n#blazeit #420 #nostr #worldwide","created_at":1759332030,"id":"2b9a3c5e76cc0dc89922eb64d916904032e4f4ded7eb6c6fc50cf8622744c65c","kind":1,"pubkey":"e758b461401ac6f97d21f936a3199da69935ea3f7117ff7bf6aa8ebd7370a4cb","sig":"7d17b674bdc50d84e07a8cb69bce5c158de570567e8cff366f7be392093734f5bf22025a9ccaafa70b1b949758ca171104c9738f41517171bc7616d0f3380697","tags":[["t","blazeit"],["t","420"],["t","nostr"],["t","worldwide"]]}] +[11:20:47.007] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Block 917249\n\n2 - high priority\n1 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759332025,"id":"b8ec694bf90d6d2f6b358a79903889db0559c4ef968fbaf37aba1cf2b897fa27","kind":1,"pubkey":"e7bf8dad360828f0289b7b4bea1a1bd28eb6d4d6522fa17f957e0dfb839ef3db","sig":"f051f943762038207f321c5b247cf7a5b2c2ee11f033f7acbd46998427be5b10230c3c1ee56cd271591480af96234b62593826198b2a575e56e6f1fa9539af81","tags":[]}] +[11:20:52.134] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"get them raspberry pi do it yourself kits for Xmas. make them make tech from scratch. eg. a network at home that's limited to home networking devices. i they can 100% learn from that. \n\nthey will think it is fun. you will know it is educational.\n\nmy brother and I had computers from a very young age, before the internet. we used to write code even: little games and stuff.\n\n#my2cents\n\n","created_at":1759332052,"id":"69f8909814cdd5762825a97912f83df2446aec0f9d4d0c3b92f53e85df6d54b4","kind":1,"pubkey":"d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","sig":"7d1617272d0e20a84276e1001ae44a00fff0a041e464410af4725d3641e4d5646bf3a66cb4b3de3199109b2610f13cbbac0306ba3b2fe9cb258743c33db555b5","tags":[["alt","A short note: get them raspberry pi do it yourself kits for Xmas..."],["e","09a67144a93a44309af14b4a4d0f0941c6711d615cf6c173de37bc56a3aff304","wss://nos.lol/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["e","6e767f052d396c9b00cac4a0cd165fac5e883c6797d66e9af2b393d98b8cfca2","wss://nostr.mom/","","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de"],["e","a26032d29566a3adefe0b8dbd674674e3bffb8345215830452d93bc31a1fe462","wss://nos.lol/","reply","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"],["p","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","wss://nostr.wine/"],["t","my2cents"]]}] +[11:20:54.889] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Block 917249\n\n2 - high priority\n1 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759332025,"id":"7702f3fa2a7c7f70e2f4339be0e403f284bf62cc3d0f8e485bbfcbe984f6675e","kind":1,"pubkey":"f03df3d4134230420cdf7acbb35f96a2542424246ab052ba24c6fec6a4d4f676","sig":"39e8a4376a1d02f759c4737a4f98720e79b0a5b827f595483e3acb115293a8d8a4cdf06f6da03e1c2d8c0b7b6967ff2c63788237d6f29bd6d436b4d7a42fcbab","tags":[]}] +[11:21:06.161] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I agree. Some other very insecure people are ones that completely go against nature so they can feed from others attention. ","created_at":1759332065,"id":"dabac60f82d892bb5ff67dbf243a6c63148ba2c7718539c72d30ebdffc202ed1","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"7eac3cb89684b6d234030a891642f3476dc561ee06b51da5aa7a2cca143eb09d72f839d8200e69dbb4b812d29424fcb7d5364696eb399b447438619aedc59a5a","tags":[["e","0531944eadd7b13f4874f4f0bfdb8f1ec248f0bc17340702ec1584f1dc4d3deb","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[11:21:06.194] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I think that the most insecure people are the ones that make/made up forced upon societal and even relationship rules. \n\nThe shoulds and shouldn'ts of society. \n\nJust because it offended them, they want you to feel and think the same. \n\n","created_at":1759331960,"id":"0531944eadd7b13f4874f4f0bfdb8f1ec248f0bc17340702ec1584f1dc4d3deb","kind":1,"pubkey":"9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7","sig":"555880c10c7822e48ed079542dd2b22599db108d16f90f2f513bdf990c779398e7ce42e227777e4c05163465a6365d291367628e5673cfae058c67faf01964c8","tags":[]}] +[11:21:10.129] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"So you are saying you have 10+ kids? ","created_at":1759332069,"id":"073170519871d5ffbe4e481666debf488515b8ffd33bbbf7743046cc668148f2","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"c6f73b5cd6ce752958a1d91fe8b248ff806670e9c9a311cf934bd23c07e1b2490eef5f0adbb7b6db62fb86e3e237ee1225097cb3f4ab13c677dc4c91b8d9ffd6","tags":[["alt","A short note: So you are saying you have 10+ kids? "],["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","0a4bb1ab6b070779551c75e82f4ab219e72a868d724b127088e83b1e87ccea7d","wss://nostr.mom/","","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731"],["e","c4fe9445aeacf1fa7088f3b877da99415c231511b8e1326163145e4280344300","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","b071bed518f1e36478b247c51b48e437890231727d569091ba8f8a65b04609ad","wss://nos.lol/","reply","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","wss://relay.damus.io/"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","wss://relay.primal.net/"]]}] +[11:21:10.162] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Gedoxt https://image.nostr.build/a8b13837444e55bbad89e0799fbb91bab21d920dd1b12d7a27e20be78212e457.jpg","created_at":1759330749,"id":"0fc356964fe58bd110e07a07dcf11ce488f84eac276787fed861f6f0d0cf20ff","kind":1,"pubkey":"e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","sig":"e306463f809234bc1dcfc461a6ccb6953a3627dd92e68e9a84d05b8ec66dfdd103d5c9e75f9b3037ed065ed5ee610c739c842daf76163b68cc4ff67158693a7a","tags":[["alt","A short note: Gedoxt https://image.nostr.build/a8b13837444e55bba..."],["e","ad40790c4bbe93439a4b5b9215dbc128982dfe180e68417557db03a1e7147e50","wss://relay.primal.net/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net/"],["r","https://image.nostr.build/a8b13837444e55bbad89e0799fbb91bab21d920dd1b12d7a27e20be78212e457.jpg"],["imeta","url https://image.nostr.build/a8b13837444e55bbad89e0799fbb91bab21d920dd1b12d7a27e20be78212e457.jpg","x fcef8b44892b0375a316102c908a6b8591922508508384d0da0932cea61db126","size 47046","m image/jpeg","dim 791x1127","blurhash ^cHVI$t6XCI:t8wNp[W;=MxZS4aLx^V[%3fjxYkV}^xGpHWXkVXRxIbItQoJaxaewOaxknWqRjnkw5X8XPoJWVax$+oLX7R*Rjoet*oeRjjGVuSL","ox fcef8b44892b0375a316102c908a6b8591922508508384d0da0932cea61db126","alt "]]}] +[11:21:36.537] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Is there a way to paywall content on Nostr with zaps âš¡ï¸? \n\n","created_at":1759332095,"id":"69820b79dba463a9e4e80615062779d91acc2b7372d115f49161a6abc89224ab","kind":1,"pubkey":"61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c","sig":"956f42c33eb41391761d70c03008c1861b2208d0810f0574ada1a446abf4bf0aebf437815334f918b867fdc991b4388235ddeab28f66e0577edc13960e13e336","tags":[]}] +[11:21:40.474] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Russel Brand is an attention seeking one trick pony whose penchant for esoteric prose barely masks the fact that he doesn't actually have anything to say.","created_at":1759332097,"id":"8849055443627053b759bea76182f8893837d66f4e9f65b1516be90ce4209ef8","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"a524f631ac073ec92a765a9ac767c6c602e5a64d82a5fe01b164f12f965bb61f1f901bd742bf47992a0e500744cd11a93b568fbd6f3de1763ad80c1aa36c94b9","tags":[["e","c61c251ffc22eae2a0a3290b4685b4ed7803185fc11faed22620a8412179c853","","reply"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"]]}] +[11:21:45.711] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Time to #ExploreMore! ðŸŒðŸš— #Jeepstr o||||||o \nhttps://images2.imgbox.com/a9/3e/RKYdx1S6_o.jpg ","created_at":1759332105,"id":"782a6551fd394ee02546c8aca67bcc70d2b7d7e55ff1bd5f6e95cdf08bf4f68b","kind":1,"pubkey":"46cab04c9682ab0426f5d5776a9d987011b352884f45b122ebc616a4987bb0c4","sig":"d6d8cc6b5d6290b1500f15e821d4202fb1e52c61c4b7b3b2e1a91f87f91f545216a6335326166e937996160b40d00929107d9461e905743df75bc768fe3ac624","tags":[]}] +[11:21:46.127] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"iogi - magic trick\nhttps://blossom.primal.net/e8fd6ee003e77005cadea842374997547120d7fd49f3a211236e943ad00dfa2a.mp4","created_at":1759332105,"id":"994559bbe598364cb8b465d135971699d03bf4d0078ebc8314cfddc8c50efaf9","kind":1,"pubkey":"c51bdb5e9ecbe9fd330a41f272aa03eb2d7999321c831f61f43111e30dc483cd","sig":"1ee9363498c6ba81392f0a12875de3d9afb31c78f1030217bd82a80362d8b04d5ebf8425293c433941c4ad78a7f5c34a6343a531c6f898aded2630d27589e39d","tags":[["alt","A short note: iogi - magic trick\nhttps://blossom.primal.net/e8fd..."],["r","https://blossom.primal.net/e8fd6ee003e77005cadea842374997547120d7fd49f3a211236e943ad00dfa2a.mp4"],["imeta","url https://blossom.primal.net/e8fd6ee003e77005cadea842374997547120d7fd49f3a211236e943ad00dfa2a.mp4","x e8fd6ee003e77005cadea842374997547120d7fd49f3a211236e943ad00dfa2a","size 11929427","m video/mp4","dim 1280x720","blurhash iRH_ulbc00r:0KNf?bn#~Vx]a#ROoJbcWXoJjsWC?Gn~E1Sixas8t5W=NHi^j?kXWYaKoIW=bIoK%1j?IpWXt5jsflj[WB","ox e8fd6ee003e77005cadea842374997547120d7fd49f3a211236e943ad00dfa2a","alt "]]}] +[11:21:51.056] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Dieses Jahr war wieder ein Ereignis reiches Bitcoin Jahr.\nDie Magie von #Bitcoin hört nicht auf zu wirken.\nAuch wenn man versucht sich ein halbes Jahr zu entfernen, um nicht ganz von den Tiefen des Rabbit Holes verschluckt zu werden ist der Sog und der Drang neues lernen so stark, dass man unbedingt zurück will. Die Bitcoin community ist einfach die geilste. Ich hoffe auf weitere tolle Jahre mit euch und auf neue Erfahrungen und Innovationen.\nIch wünsche euch allen eine Tolle Woche !!!!\n#bitcoin #studybitcoin #plebs #nostr #Libertäre #Freiheit\n\n\nhttps://blossom.primal.net/39457f38ec0af3f95ae322bf08f4baa68916d8bc6b1f7dfa9f6a7896cf5beaa8.png ","created_at":1759332108,"id":"b3662bd2bb732c47be5b5fd8452b578543272158346dc21dd18b2c8679e2edbd","kind":1,"pubkey":"4a6110aa4a15f0e447425010a997e8cefc5840871243d256a19f2817cc5014f8","sig":"03d89175767ee14c9d4f091a526597afe94422e5c9d74bad33b4fab634b0a14a76abf9c69d14cc5618102dc320f589df37e07d468e3747445c91b89bc99723fe","tags":[["t","Bitcoin"],["t","bitcoin"],["t","studybitcoin"],["t","plebs"],["t","nostr"],["t","Libertäre"],["t","Freiheit"],["r","wss://atlas.nostr.land/","read"],["r","wss://eden.nostr.land/","read"],["r","wss://no.str.cr/","write"],["r","wss://nos.lol/","write"],["r","wss://nostr.bitcoiner.social/","write"],["r","wss://nostr.einundzwanzig.space/","write"],["r","wss://nostr.mom/","write"],["r","wss://nostr.noderunners.network/","read"],["r","wss://nostr.oxtr.dev/","write"],["r","wss://nostrelites.org/","read"],["r","wss://nostr.zbd.gg/","read"],["r","wss://purplepag.es/","read"],["r","wss://relay.azzamo.net/","read"],["r","wss://relay.momostr.pink/","read"],["r","wss://puravida.nostr.land/","read"],["r","wss://relay.nostr.band/","read"],["r","wss://relay.patrickulrich.com/","read"],["r","wss://relay.primal.net/","read"],["r","wss://xmr.ithurtswhenip.ee/","read"],["r","wss://relay.mostr.pub/","read"],["r","wss://relay.damus.io/","write"],["r","wss://nostr.inosta.cc/","read"],["r","wss://nostr.wine/","read"],["r","wss://nostr-pub.wellorder.net/","write"],["r","wss://relay.coinos.io/","read"],["r","wss://relay.snort.social/","write"],["r","wss://relay.nostr.com.au/","read"],["r","wss://auth.nostr1.com/","read"]]}] +[11:22:02.257] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Spidercat https://video.nostr.build/07af02d08777bff89bb25f8bffaf69cd5f03f5565eb97e74b20ccfb83c6d9991.mp4","created_at":1759332121,"id":"e847c07d66f1073e1147a057e1cc33535211175c4ebded4d61f1dd9a5bfd510b","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"94f0e5110ca77def3af8c3452b9cc84f1ec87d032f24ff64f4ed07ff87dff2d5f37830a269ee73db4078b5423a6a01dca6d958b2c04029ee998413ed03e61b6f","tags":[["alt","A short note: Spidercat https://video.nostr.build/07af02d08777bf..."],["r","https://video.nostr.build/07af02d08777bff89bb25f8bffaf69cd5f03f5565eb97e74b20ccfb83c6d9991.mp4"],["imeta","url https://video.nostr.build/07af02d08777bff89bb25f8bffaf69cd5f03f5565eb97e74b20ccfb83c6d9991.mp4","x f7c8e216ce3443f80db725bf045d0be84d12d8878bb4c597e9655f7faca61b4e","size 562180","m video/mp4","dim 480x852","blurhash ]GJ830?aoKaxM|00V@ofayaz%2WBRjt7t6~pofRkoeoLaeayoeR*ayIoWBt7ayWBR*WCWBofj[t7oLWBjuofV@oft7WBWB","ox f7c8e216ce3443f80db725bf045d0be84d12d8878bb4c597e9655f7faca61b4e","alt "]]}] +[11:22:02.291] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"我喜欢资本市场,åªè¦å¸‚场足够大,就没有è°èƒ½èŽ·å¾—åŠæ—¶çš„完全信æ¯ï¼Œå“ªæ€•癌股这样的利维å¦å·¨åº„市场也ä¸è¡Œã€‚何况价值是主观的,哪怕盘å£ä»·æ ¼æœ‰ç•¥å¾®å˜åŠ¨ï¼Œéƒ½ä¼šå½±å“å‚与者内心的价值表排åºï¼Œå‡€ä¹°å®¶å’Œå‡€å–å®¶éšæ—¶å¯ä»¥ç›¸äº’转æ¢ã€‚那么,我å¯ä»¥è¿™ä¹ˆè¯´ï¼Œæ— è®ºé‡‡ç”¨ä»€ä¹ˆæ–¹æ³•都几乎ä¸å¯èƒ½æ˜¯å®Œå¤‡çš„ã€ç²¾ç¡®çš„,一套好的方法必须具备相当程度的容错度,å¦åˆ™ä¸å¯èƒ½é€šè¿‡é历性检验,é‡åˆ°å¸æ”¶å£å‡ ä¹Žæ˜¯å¿…然的。","created_at":1759332121,"id":"707841b54d1fdfb6d7ab2ca530735ae9c72cde29cf6033dbdbc152fb7cc64919","kind":1,"pubkey":"81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5","sig":"3ea5c35543486e517a1d3827a589daa54257f9940e360e0e88760f3e2746b7025035868257734b771dd959ef3e9c7991bd9de8195b57cd149057fb07d2dd8857","tags":[["alt","A short note: 我喜欢资本市场,åªè¦å¸‚场足够大,就没有è°èƒ½èŽ·å¾—åŠæ—¶çš„完全信æ¯ï¼Œå“ªæ€•癌股这样的利维å¦å·¨åº„市场也ä¸è¡Œã€‚何..."]]}] +[11:22:21.020] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"You could come up with clever ways to do that, files are way different (and scsi controllers handle that different in all operating systems too). But compilers are smarter than that, too, depending on where the memory is located, if you never _use_ the data outside the translation unit the compiler could still wipe that code, you always have to inspect the generated assembly to be sure. There are easier ways like asking the compiler nicely, to pretty please don't optimize my code. \n\nalso keep in mind those random bits could cause one or more system calls, which introduce other issues like preemption. Invoking a system call is obviously a context switch and then possibly a reschedule of your thread. Generally want to avoid that as well. If you are using pseudo random bits in user-space, those writes could also get optimizes away either by the compiler and/or the cpu pipeline. So either way you're kind of at the mercy of the compiler, and hopefully it allows you to schedule zero instructions mitigating a context or thread switch. It also depends on the pages allocated too, the OS and hardware is also smart in that when you write back to memory, it might not write back to the same physical pages (with ALR I think this might even be a guarantee). So then you need to force volatile write-through which, is also very likely to cause preemption due to waiting for memory for a long time. It's all trade-offs. \n\nWhat im saying is it all sucks, and we just have to thoroughly understand the compilers, especially so on systems-level programming. ","created_at":1759332130,"id":"979e0a77effb3c21c3885fe8ff62ce6aa1be304aec3b1cfd519581b75b399b00","kind":1,"pubkey":"036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","sig":"b4056f9e852c9cdeeb042c434709de07e981ce4b6347bd0ca528a2bd4c3895559e85cd57ae9eee726d496f9a188d717394fe04d1883ac5d96d06bd297176b0b6","tags":[["e","be2b5ee9a44b0d67d962fb23fca7f3cf3676f1da8da2ba0cbf522d6900236859","wss://theforest.nostr1.com/","root","fd208ee8c8f283780a9552896e4823cc9dc6bfd442063889577106940fd927c1"],["e","b83c69a5ef28dcca7b744bca026edcc74f91a97b424a2279b820ef592a845007","wss://nostr.oxtr.dev/","reply","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","fd208ee8c8f283780a9552896e4823cc9dc6bfd442063889577106940fd927c1"],["p","75656740209960c74fe373e6943f8a21ab896889d8691276a60f86aadbc8f92a"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"]]}] +[11:22:33.166] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Mid-wits are attracted to him like moths to a flame.","created_at":1759332152,"id":"441569ddbbf5f010c52801d66a25a5fb07e7c7824bdd79159defc13d72f3d52d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"444e0747617105edeb3ccecf1a6edded1d35cee44dd76a31a6cfb7f6cabdecb51f2a7aa3849695e1cbfdb1ec08ad97443faefba2bdfb9cea364cdedb31793c9a","tags":[["e","c61c251ffc22eae2a0a3290b4685b4ed7803185fc11faed22620a8412179c853","","root"],["e","8849055443627053b759bea76182f8893837d66f4e9f65b1516be90ce4209ef8","","reply"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"]]}] +[11:22:41.948] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"fanfares.io","created_at":1759332160,"id":"f0c10642a4e466102f49d223121ed360674fa12ed0762b1325ce361cec224366","kind":1,"pubkey":"16f1a0100d4cfffbcc4230e8e0e4290cc5849c1adc64d6653fda07c031b1074b","sig":"9d4dabc194bdafd153417ccc06caa33dde5d17999d6f6ab1a31e56f910f1e95ebf2e3bd436a927db53fc06a81a07265d764666881f723435016c5279669dc1fb","tags":[["alt","A short note: fanfares.io"],["e","69820b79dba463a9e4e80615062779d91acc2b7372d115f49161a6abc89224ab","wss://relay.nostr.band/","root","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c"],["p","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c","wss://lightningrelay.com/"],["r","https://fanfares.io/"]]}] +[11:22:50.702] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"As long as every american pays property taxes, nobody owns their home. You are renting it from the government.","created_at":1759332171,"id":"22f50e6a07a2da45c2a65ca25bb37ca017f7f1649c9d32f1387acfaa5e0b7f03","kind":1,"pubkey":"fd31d0a4910f7ce9c46ac63df62781a9981e79a11de16d1664f1feb14f6a8c94","sig":"1e0594fa0a24ce572fe60d73c64babc4c81a9cbd58c1e9b1570177cce3ef31fb0c8c1219258a055ede8cf658bf7a61d287c7badfb40af49f1fa8f73d817ba252","tags":[["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","","root"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"]]}] +[11:22:52.265] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"You guys know that strong friend of yours? The one always checking on everyone, making sure everyone has an ear or shoulder when they need it?\nCheck on that friend. They're struggling more than you will ever know; more than they'll ever let you know. \nAnd don't come at them with some weak \"if you need to talk...\" Give them that real real like they give you. \"Hey friend. I know it's hard being the rock. Let me get you a coffee, beer, sandwich and we'll share that rock's weight for a bit.\" ","created_at":1759332171,"id":"e8dbb79052f85db1a3a1813f584da70711062c7dd4c6f651947433faebc8e664","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"6502472b51d342babf850e42e10f9716e5feef3a07c7552146a94d412d7366bbc384f517479e9f55a429909cfb88463da09fe7ced90039693458e344a5fc53ed","tags":[["alt","A short note: You guys know that strong friend of yours? The one..."]]}] +[11:23:21.849] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 V BerlínÄ› zatkli tÅ™i podezÅ™elé z Älenství v Hamásu. MÄ›li chystat vražedné útoky na židovské instituce: \n\nV BerlínÄ› zatkli trojici podezÅ™elých z Älenství v teroristické organizaci Hamás, píše deník Bild. Podle úřadů si mÄ›li údajnÄ› opatÅ™it zbranÄ› pro možné útoky na izraelské Äi židovské instituce v NÄ›mecku. \nhttps://www.echo24.cz/a/HudGd/zpravy-svet-denik-berlin-zatceni-tri-clenu-hamasu-teroristicka-organizace-utoky-zidovske-instituce \n#CzechNews #News #Press #Media","created_at":1759332182,"id":"a68473fe2dfc3a9acb552b68b2e03a4bcdde77da6acddb1765009938f79e1722","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"36a5fcdd9e7cc8b3bd36ce2950cdcd870a5d751d103bd4c7eda7473cc2ef204fc04852adc33f7d9e22f287d5f3db23b835cc45ceac42bbbbdf46e4b7a3ac826a","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:23:32.454] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Husky steam engine..ðŸ•ðŸ¾ðŸ˜…\nSound on https://video.nostr.build/6fa83b29d3e539864d41f4c502ad03dc2e9cd2c92aaa3f7a1cf51c443692cefb.mp4","created_at":1759332212,"id":"0b7323becb810f950b9113e5c31c9a776e66e48c3eac6f8ea3e0963b24f2480e","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"2572a986e017e09bb959244c0a6586c5ea2ae9af197319ca1d411504ab7ebcbbe3ad442fb5e25916457df1a25480376525c7d52527faed94eb13efd14cf09068","tags":[["alt","A short note: Husky steam engine..ðŸ•ðŸ¾ðŸ˜…\nSound on https://video...."],["r","https://video.nostr.build/6fa83b29d3e539864d41f4c502ad03dc2e9cd2c92aaa3f7a1cf51c443692cefb.mp4"],["imeta","url https://video.nostr.build/6fa83b29d3e539864d41f4c502ad03dc2e9cd2c92aaa3f7a1cf51c443692cefb.mp4","x 8cbb5187398d2d4ce3f8b9cc2c971ac64f044aef0d1b5cc9964161e9f255b406","size 435845","m video/mp4","dim 720x720","blurhash U8GRk]0NDh$x02~UxW57KQIVE,Ri4T-6ofaJ","ox 8cbb5187398d2d4ce3f8b9cc2c971ac64f044aef0d1b5cc9964161e9f255b406","alt "]]}] +[11:23:46.634] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I saw a 6'7\" dude dressed like and pretending to be a 15 yo girl in a christina agulara music video and he definitely loved that everyone was shocked by looking at him. \n\n🤔","created_at":1759332225,"id":"1467f25fc760ab1fe33444d88fe39e85529ae1f7fbee1e74bd9d85ca45cd818b","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"4fde9d5f6e906da607c9adc76ec1dc582e46e1b5a9faead5b6ab0a6191ba645a7d9e118095d5c6cbfc291c383a11b9b16f665080361ec8db3abf4f70d1e6d7b0","tags":[]}] +[11:23:55.156] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#neverwaznormal 🔓","created_at":1759332235,"id":"abbf36d8301f7e37eec3343935dd0d1d7051f270c6a1121bf4eb2bc9766c720b","kind":1,"pubkey":"dab9562a4b156617923fb2bb31d59bab075ffa5f1f885a811fba468cba18162e","sig":"597bb28b0ef154bfe7a7ff20e3f8866aef136f9633bc4d6e2e8d9319e02fb2a2e67563c841dd78e78ea056ff8d005e7de31ddbfa8e37032ad2a27cb5e0d9ec23","tags":[["e","1dee98328663bdbffdc58a1ee58e95d69bc7907b72e29de7b8ddd0fa5bc90439","wss://relay.damus.io/","root","47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3"],["e","1dee98328663bdbffdc58a1ee58e95d69bc7907b72e29de7b8ddd0fa5bc90439","wss://relay.damus.io/","reply","47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3"],["p","47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3"],["t","neverwaznormal"]]}] +[11:24:01.948] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":" \n\n\n\nhttps://blossom.primal.net/01e2abe73a29611d5685eebe6e28d3c0356191c049e67d8500fb9a08e6c0d6fd.jpg","created_at":1759332241,"id":"7ef1c7dd1194936ad65c8300a9e5d712d07cbf9d654518637dc6a4a32151dfe9","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"074284c7c3018db46c14c9fbc8c1f816728d2e48881ab79677b8140ab43b793cfc1e4c4f1d45e3b608e19f52f4e084678f2fa8f591a66da6677fd2db1e7272c1","tags":[["imeta","url https://blossom.primal.net/01e2abe73a29611d5685eebe6e28d3c0356191c049e67d8500fb9a08e6c0d6fd.jpg","m image/jpeg","ox 01e2abe73a29611d5685eebe6e28d3c0356191c049e67d8500fb9a08e6c0d6fd","dim 1179x611"]]}] +[11:24:11.268] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"Husky steam engine..ðŸ•ðŸ¾ðŸ˜…\nSound on https://video.nostr.build/6fa83b29d3e539864d41f4c502ad03dc2e9cd2c92aaa3f7a1cf51c443692cefb.mp4","created_at":1759332212,"id":"0b7323becb810f950b9113e5c31c9a776e66e48c3eac6f8ea3e0963b24f2480e","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"2572a986e017e09bb959244c0a6586c5ea2ae9af197319ca1d411504ab7ebcbbe3ad442fb5e25916457df1a25480376525c7d52527faed94eb13efd14cf09068","tags":[["alt","A short note: Husky steam engine..ðŸ•ðŸ¾ðŸ˜…\nSound on https://video...."],["r","https://video.nostr.build/6fa83b29d3e539864d41f4c502ad03dc2e9cd2c92aaa3f7a1cf51c443692cefb.mp4"],["imeta","url https://video.nostr.build/6fa83b29d3e539864d41f4c502ad03dc2e9cd2c92aaa3f7a1cf51c443692cefb.mp4","x 8cbb5187398d2d4ce3f8b9cc2c971ac64f044aef0d1b5cc9964161e9f255b406","size 435845","m video/mp4","dim 720x720","blurhash U8GRk]0NDh$x02~UxW57KQIVE,Ri4T-6ofaJ","ox 8cbb5187398d2d4ce3f8b9cc2c971ac64f044aef0d1b5cc9964161e9f255b406","alt "]]}] +[11:24:14.403] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Stats:\nkeys: ","created_at":1759332253,"id":"ad1c73ca271382d217b01ee332d3d5f8bd35ff2fa5462eda1f4f29436e718be9","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"24619c816886ed49b7bda87a77d0dc65c0b4f1bc9f0d69a66594c96cf68a19bb3cde0bc44cefe87c3c497310bcedf6e931c8b0273be6accd342990282a610bfd","tags":[["t","keycrux"]]}] +[11:24:18.431] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Sounds like you and he are buds now.","created_at":1759332250,"id":"eb3ad57c7d0da9f78c636b7bcb6af69257190e9986b3a671c190188da1990206","kind":1,"pubkey":"ee6ea13ab9fe5c4a68eaf9b1a34fe014a66b40117c50ee2a614f4cda959b6e74","sig":"a57287cee556f3fc4aeaa132ab0807b2673bf810d1845a48e2ce460c3cc41701690ca04bb3dd7cc6e65d7d2b23ef850b77d03189f15015c04109dd7ff766577b","tags":[["e","347b3ea85e35b7ffa70a6687642d1c27dab648aa5cd8c29b5ba93fd5a2eb56b3","","root"],["e","f6417fee89646012e141ade3cbdfad5915c75f6db58555d669db81e4aab23006","","reply"],["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca"]]}] +[11:24:18.772] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"nostr:npub16lvpp8hyxetuuczk4kjx2vqxhwmyruc72r59ysmgrsnjg5rcz8kqk07j3k offers this, I believe\nhttps://fanfares.io/","created_at":1759332256,"id":"29c9d82befa77c293777cb2d16f393c7b05105c3b6f7e748974d7a6b28ab6ab7","kind":1,"pubkey":"dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491","sig":"c493d85a1fefd6772bbf9536dc37dd39dfbc06e787d546f3c4eb5c7e20c7aafc338abbca95295f5fa337bf77719429fa7476971e2bdf13bcb43b1e5da39de51d","tags":[["e","69820b79dba463a9e4e80615062779d91acc2b7372d115f49161a6abc89224ab","wss://nostr.mom/","root","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c"],["p","d7d8109ee43657ce6056ada4653006bbb641f31e50e85243681c2724507811ec"],["p","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c"]]}] +[11:24:30.045] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"AWSを使ã†ã®ã§ã¯ãªãAWSを作ã£ã¦ãã ã•ã„","created_at":1759332269,"id":"853b41eaa8bab5124a6358f41641251e896cebbb34ab69917afffed2271dad3a","kind":1,"pubkey":"f40832e26b1d12f8a27717b606996baef68bc4b6b86c4a35ca827f6fbcbf511e","sig":"0ec4d40082b109301914f45d17621691f524b48997c8fa4c26e7a3d68dda99af2152b215fc46156fd5a80ca0da5658dd298fd1cc560b54cb0f7bdc9d71ccb219","tags":[]}] +[11:24:31.073] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://ruwix.com/the-rubiks-cube/how-to-solve-the-rubiks-cube-beginners-method/\n\nI keep forgetting the moves. This site got quite some visits from me.","created_at":1759332272,"id":"a7e39d7e9172b312d2d634de4f2ed2f779a8ecc7e0a104f6cd7490a3ec2599d4","kind":1,"pubkey":"aed193be7ba0de293d13c1981e4fe351e44b70b4a57c07eceace2bea1a242155","sig":"b2afe10f342f51ad683f8671671548d88a12a2efd40b208dedbde6f528c688b76eca21954752eaaf05f9d446a683a81db5abcbe5ef9b4a76d0340bc60bd47b80","tags":[["e","12c75a5893a13a597d7923e88c5a3f86ca6c11ef70852ac12fb36d095606cda0","","root"],["e","bc01fc01eb855f04f55de188f1e1e710b50007116edc165e3cd3e3943cfa9af8","","reply"],["p","566c166f3adab0c8fba5da015b0b3bcc8eb3696b455f2a1d43bfbd97059646a8"],["p","2556b6fe7991a73d152ff3ad084ee591dcb8d4326622eac9fe1a04ffa7a4ff58"],["r","https://ruwix.com/the-rubiks-cube/how-to-solve-the-rubiks-cube-beginners-method/"]]}] +[11:24:48.032] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"What does this have to do with your replacing yourself? If you really believe that, I am sorry you have to feel that. ","created_at":1759332287,"id":"59f0c5d3a0bcea97a450115f9098e9f46ee5a1c7bb2b817210c9d4340f0be84a","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"d2dbc161f0be8507fb5d648d0b16d66efa6f7f711d57d64f633353426204eb071db49694d0a44901a83e5db72144f250cb33218ca6ad7a7828eb6aadc9ede02b","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef"],["e","990c6880cef441d04f1ef6ce85209ae331b4760215c8c206074d50c16d0743a4","","reply"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:25:09.587] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Well I guess if that’s how you sell your wine… \n\nThat’s no different than me using LinkedIn to get a toolmaker job…\n\nOr simply bitcoin using YouTube \n\nGotta do what you gotta do \n\nI reckon ","created_at":1759332297,"id":"3d058db7079cd5b6677d5974b34d0ec95b04e47b1dc4e2dda71c8dea0897d984","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"050b2f0a11a34f7796db9d5d350271639710a58a0dbfdb85ef7b5016aca7f0e0f48ba1e52f8893148313df9d7ad7cb1b4e90ef45fd9f69218c82fa3a42c2fe8f","tags":[["e","e7aa1fb27833620f5a096ef977f9ea37bae78de5d14f0ddaad2e6ad8f3006697","","root"],["e","16ff464dff5c4bad73e58240c83fa9429a32743c65872c2a716a8f965496f9b7","","reply"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[11:25:12.603] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"finally getting around to refining the note metadata api in #nostrdb . basic plan is that the client will be able to mark a zap note as verified. once you set this flag on the zap note metadata, nostrdb will automatically parse the zap and increase the zap counter on the target note.\n\nthis will enable O(1) *verified* zap stats when rendering notes. no longer will we have missing zap counts on the timeline.\n\nall done without any stats/caching server which is nice for local-first nostr.\n\nanyway, thats it for my boring dev log of the day.\n\nhttps://github.com/damus-io/nostrdb/issues/88","created_at":1759332304,"id":"5edb133253a7d4ab9e39df73e6ba64c3bbbc019c7702861ca51c6de418acfe6d","kind":1,"pubkey":"32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","sig":"febc8f0e5e9e7325bd7a356ad355c05583b55fcc155c28ed7711f2b9e198274afb74e8f4f30233316ee409028fcc29a296d3040aed98e780718bd62f572010ef","tags":[["client","Damus Notedeck"],["t","nostrdb"]]}] +[11:25:20.056] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Awww, did you just see your future daughter-in-law? (Mommy premonitions are real.) ","created_at":1759332319,"id":"d931a657cc059a5f5fa86d5ac1e920f92c13f343040647cca0e484390d83d983","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"68a6ab084da9e795203d837ed9a03fb2b6b970f5d8184147bce063cf9f8d6d03817d6c702aa6da7c9919f1da9625c1090f70917a6993d7b8434f934cf9317076","tags":[["alt","A short note: Awww, did you just see your future daughter-in-law..."],["e","5c2b797ae080afdb404ad7089a34b54f1d49e25a4daa5de3a9c6cce30ece0e9a","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[11:25:21.467] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#Nike reported quarterly results that were covered in Traders Talk and drew a positive market reaction, lifting the company’s shares during the session, according to the discussion. No specific figures were provided in the segment. #Nike #FiatNews","created_at":1759332302,"id":"2a8e2bce0bd369ac86d0412c563f0d8cdcc915c20efaadfb23754b5029747e24","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"2f86523faa1041f68094e46708a69e32643698b6eab3f3752c352406ce730fa69ff38e4c520e95e764b1c3b17382e42a621b787a7b4f3e503733502e9c508801","tags":[["t","Nike"],["t","nike"],["t","FiatNews"],["t","fiatnews"]]}] +[11:25:30.144] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"The good old days 😭🤣\n\nhttps://i.nostr.build/f9NtvIGIrqp1BrcL.jpg","created_at":1759332322,"id":"6d7e6f310894ef67fef7f960de90a0b8f422be2884604740d3faa11ddf48d33e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"ede81a574ab8c33bffd2c03fd43b7d5e7fc3b9a14e527a5676d6538ece8c9a23af3bdab71478f66e363aea083a1d8ff0d8ff17cd15190e874e35a4b230a6f177","tags":[["imeta","url https://i.nostr.build/f9NtvIGIrqp1BrcL.jpg","blurhash eDQ+]34mM|jct8IUIUM|RjWBIVIVM{RjWUInM{RQRjWBM{RQV[WBay","dim 1127x2320"],["r","https://i.nostr.build/f9NtvIGIrqp1BrcL.jpg"]]}] +[11:25:37.160] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I mean her, sorry, I got confuses by the dick in his pants. ","created_at":1759332336,"id":"779c381deb9b6492ed2fbbcaee4638b168afcc4cf688d42bd349f2eca2643720","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"9531e1d6e2dd3e2deceee21cf1c2ac82542bfbdb06d370fc60c96e26b1374f780a2887ec349bca8da518030600374e9dff52298dd9d4100025b3eca6404a0813","tags":[["e","1467f25fc760ab1fe33444d88fe39e85529ae1f7fbee1e74bd9d85ca45cd818b","","root"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:25:51.062] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Sorry to hear that, same happened to my area in ~2022, probably likely to happen again soon. Same deal. It's shit, but my friends/family were able to fight it. Basically they were able to bring their own, more realistic, appraisal into court and show the value was significantly lower than was estimated. ","created_at":1759332342,"id":"2fe06978852f889392a24bd924ff7617dbeb07eff6a5f32feb912f2225f424a0","kind":1,"pubkey":"036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","sig":"de4be6e7d159ac9d7e2ff63d6ba4adc97526b1cdce8651c599f585cfd6609980d8bdf94f4ca896feea56d4473b14ce0656c226563273f417d9d6c621dd336fcf","tags":[["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://nostr.oxtr.dev/","root","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://nostr.oxtr.dev/","reply","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"]]}] +[11:25:52.717] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"If you can hear her throughts🤣😂🤣😂\nSound on https://video.nostr.build/a0fbf1e803da2acf729a757e1efdea1803a483fd66ddeb0a9afc94460ed74480.mp4","created_at":1759332349,"id":"1e7b67542a3d04a357f847c9c664b87c1e1c48863936af721edd3f8b319339ff","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"48ea36a344f21681b3212b6c201f9010d3a395a52dffe1778609f0ea9dfcda5e75c6f6a4571097d7dc8eafdedee9a82b737f5681a86ee86bbec8cf9e824f794d","tags":[["alt","A short note: If you can hear her throughts🤣😂🤣😂\nSound on htt..."],["r","https://video.nostr.build/a0fbf1e803da2acf729a757e1efdea1803a483fd66ddeb0a9afc94460ed74480.mp4"],["imeta","url https://video.nostr.build/a0fbf1e803da2acf729a757e1efdea1803a483fd66ddeb0a9afc94460ed74480.mp4","x 963f8a3f2df7708fb8874e949fac3e03e4e73350ab192e1b71020210e0efcb4f","size 1187635","m video/mp4","dim 480x852","blurhash ]HFF%1%MxvjbOZ?aXTWAMxR*A_9ZNHtRnONK%2WEXSnO~WxFM_RjW=_3ELozaeS$t7IpS4j]X9RPwbofRjRPIU-pt8o#so","ox 963f8a3f2df7708fb8874e949fac3e03e4e73350ab192e1b71020210e0efcb4f","alt "]]}] +[11:26:04.563] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Soraã«ã‚¯ã‚½å‹•画作らã›ãŸã„ã‘ã©ä½•ã‚‚æ€ã„ã¤ã‹ã‚“ãª\nã¨ã‚Šã‚ãˆãšDMã§é€ã‚‰ã‚Œã¦ããŸãƒãƒ³ã‚³è²¼ã‚‹ã‹","created_at":1759332364,"id":"e375599e600b3073f0b4e52f0216142e6e8360194b5e70eb21f115364e491d9c","kind":1,"pubkey":"f40832e26b1d12f8a27717b606996baef68bc4b6b86c4a35ca827f6fbcbf511e","sig":"5b2b1fa231297f3bdeef7a8958e19a3d771cf7bbe16947bb5e62e19b1736a4c0f64c7cafa7920b8be17ddcef4bdbf42a8f629fa1db89bd5256c3b464b54da4da","tags":[]}] +[11:26:21.688] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Since delving into the teachings of the Chinese philosopher and scholar \"Fuk Yoo\", I have embraced a more carefree existence. \n\n","created_at":1759332382,"id":"8f191e7a2779794fd01be608381a131e979ebbea9c21becbe36fb109f9822f9d","kind":1,"pubkey":"0d7ceca9e000e711e263bc14a2216ab74968a9e903eba214a714300adede5a20","sig":"f51b19ae25a89189ee398e81fd0352639a099f87884c2f3292e2584cac4be0cb6d7807f197580ead9899b59a18cbb20a620440d9d79f6f0fba0c159571b7e68a","tags":[]}] +[11:26:23.966] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Ha! Maybe but I just know, from being that strong friend, that we do need a check in sometimes. The weight of the world is heavy. I'm also a big sister and a mama so I get that \"strong friend\" thing in spades. ","created_at":1759332383,"id":"018a58ed1ff33f5fd6c322320bf2794d6bbefd6b9788e6abf3e8897ca737c398","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"11c0d9b0caaaf423db1781606fa74a8b37f6f73ee70a5ecff0600663a00b24bff60ffe684553e815f8bea3232490839252757f57e9af6022bd5a057904f261d7","tags":[["alt","A short note: Ha! Maybe but I just know, from being that strong ..."],["e","e8dbb79052f85db1a3a1813f584da70711062c7dd4c6f651947433faebc8e664","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","61e94c24d38f86c3596a895e0fdb14ad93e1dcc65c787db64d9c56a2617ce4b6","wss://theforest.nostr1.com/","reply","6a02b7d5d5c1ceec3d0ad28dd71c4cfeebb6397b95fef5cd5032c9223a13d02a"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","6a02b7d5d5c1ceec3d0ad28dd71c4cfeebb6397b95fef5cd5032c9223a13d02a","wss://nostr.land/"]]}] +[11:26:26.469] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#Novo Nordisk is testing an Alzheimer’s drug; Morgan Stanley estimates a ~25% chance of success but says a positive result could move the stock by over 10%. Broker Martin Uher commented he expects the share reaction could be even larger. #NovoNordisk #Alzheimers #FiatNews","created_at":1759332367,"id":"d9835971330613eaf2c6a94e7390d66c99a70db2dedbaa25ba08c1dca1f9cfc0","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"162e90a415ed3c0461a9cf9b4119b1c85291b653696a7b9a9a5045118ba59df97009c62eca3247af4afd46ffaf11ff544cb6c3d308619ff229540fadf51ab67d","tags":[["t","Novo"],["t","novo"],["t","NovoNordisk"],["t","novonordisk"],["t","Alzheimers"],["t","alzheimers"],["t","FiatNews"],["t","fiatnews"]]}] +[11:26:31.474] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Good Move !\n\nBack to 100K€ â«\n#btc #bitcoin \n\n\n\nhttps://blossom.primal.net/ce028fca98af3bdb960d8fb9d15a32b29b2df52514fc87810f31bb59023af1e1.png","created_at":1759332390,"id":"77ae6190e16d84d608be5f613d9dedad2183ea52b3dd431c79df04bc348fa7da","kind":1,"pubkey":"264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2","sig":"0f370f8c78b0a17737b7b1deeb9fb541e4045c77228c57532e1ce7d7c4f82bd7d08da3e7e25c387795f686ee4f3d3baee5061fafa24cddc7536f7e6e1b78bbba","tags":[["t","btc"],["t","bitcoin"],["imeta","url https://blossom.primal.net/ce028fca98af3bdb960d8fb9d15a32b29b2df52514fc87810f31bb59023af1e1.png","m image/png","ox ce028fca98af3bdb960d8fb9d15a32b29b2df52514fc87810f31bb59023af1e1","dim 960x1479"]]}] +[11:26:32.382] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Pierce through that mask.\n\n- The Shadow of Shame\n- Ego Worship\n- Fear of Accountability\n- Victim Consciousness\n- Suppressed Voice\n\nnostr:nevent1qqsdftyxglesayj8m8tuvyydkdfrqd6lwswwheke5pe68jgvwcreqmcpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyqzvjczf0tmp3tsc7528k0juxz008k9xy5tk3gwqsg8q9jfhdrxrkqcyqqqqqqgn4anmy","created_at":1759332392,"id":"9b65bce3dc86e441cc815c231a057137f5493ba9ef8126d709a8f13469237573","kind":1,"pubkey":"55809c7cabdb407d8b974119df902a539cc58b74b0b0540b6a5e24c073e29c8b","sig":"2d455b87c45678541171cd1bb39677f36a35a4e3277ec6294320a7b6338b8470a1632d26a8682cb195bba77db353f6869b0008c63a6cf5c1b4af24a2387ae40a","tags":[["alt","A short note: Pierce through that mask.\n\n- The Shadow of Shame\n-..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","d4ac8647f30e9247d9d7c6108db35230375f741cebe6d9a073a3c90c7607906f","wss://relay.nostr.band/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","55809c7cabdb407d8b974119df902a539cc58b74b0b0540b6a5e24c073e29c8b","wss://nos.lol/","0.1"]]}] +[11:26:37.621] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"GM🌞 \n\n","created_at":1759332396,"id":"964bf20e984087791695c3006111adc2f117763957805ec24b92007b44c713ad","kind":1,"pubkey":"553eb2cad2f273d07e378eebd94be9abf984ce45963b7309899477333a135132","sig":"c9b7a119084f1439c7dd2b7eaf53215dae821919db3e50549942753a33b38c3bb9e91939761bfdcfb8c90a8c73538217d61be697d95f866bc5f6734efdffade7","tags":[["p","b22fef18cbf5eeb5d79451ef9c4cda28efd47fa794a2bc7d04495ccb1bba6e1f","wss://theforest.nostr1.com"],["e","62f7c27a3ae840e6944b0114a646059ca8e3922f6b1a0f84316e55644943a21f","wss://theforest.nostr1.com","root","b22fef18cbf5eeb5d79451ef9c4cda28efd47fa794a2bc7d04495ccb1bba6e1f"]]}] +[11:26:43.010] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I only found one. My manual cleaning was too good lol. Love the UI/UX 🤌ðŸ¾ðŸ¤ŒðŸ¾","created_at":1759332396,"id":"dff005016c35e1a901b8f50d7ca169ca59726bbefe1222e9f2ce00be98ef6828","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"23647f86f38e40e63db6a874d206b21ac3ef589f0dff15e17925247d11cbfe71b6b9cf1805885b40bf1815dc81d4313c6fa929296f3e118bd3cce0284d710e8a","tags":[["e","2f97ab8e770f2998e473ee9ed46a2945b1a66dd6fb684a42e07e0942a8de5c61","","root"],["p","0b04ac14550f78ad19ae493aaab5e0bcf53c9c412b1d2e10ced28aeb48acbd3f"]]}] +[11:26:45.754] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759330633",{"content":"If you can hear her throughts🤣😂🤣😂\nSound on https://video.nostr.build/a0fbf1e803da2acf729a757e1efdea1803a483fd66ddeb0a9afc94460ed74480.mp4","created_at":1759332349,"id":"1e7b67542a3d04a357f847c9c664b87c1e1c48863936af721edd3f8b319339ff","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"48ea36a344f21681b3212b6c201f9010d3a395a52dffe1778609f0ea9dfcda5e75c6f6a4571097d7dc8eafdedee9a82b737f5681a86ee86bbec8cf9e824f794d","tags":[["alt","A short note: If you can hear her throughts🤣😂🤣😂\nSound on htt..."],["r","https://video.nostr.build/a0fbf1e803da2acf729a757e1efdea1803a483fd66ddeb0a9afc94460ed74480.mp4"],["imeta","url https://video.nostr.build/a0fbf1e803da2acf729a757e1efdea1803a483fd66ddeb0a9afc94460ed74480.mp4","x 963f8a3f2df7708fb8874e949fac3e03e4e73350ab192e1b71020210e0efcb4f","size 1187635","m video/mp4","dim 480x852","blurhash ]HFF%1%MxvjbOZ?aXTWAMxR*A_9ZNHtRnONK%2WEXSnO~WxFM_RjW=_3ELozaeS$t7IpS4j]X9RPwbofRjRPIU-pt8o#so","ox 963f8a3f2df7708fb8874e949fac3e03e4e73350ab192e1b71020210e0efcb4f","alt "]]}] +[11:26:58.251] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"<3","created_at":1759332411,"id":"4c7c5e7fcc8644f4f0f07b4d26e8910d8b5ee223a8f7c23df97d3e17e8671542","kind":1,"pubkey":"32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","sig":"673bd7070c10a2efae8add7f0a6cd31d319c3e0e4b752b74e16ee9f86c1d6a15f6d07626ae430b982273b2bbbb043a13686294fcdc5d3ec2f665fb8c68fb234e","tags":[["client","Damus Notedeck"],["e","095b6f3bfd4532e410bed45be26d7c13b17d85cbde6a2e538bafd621cb1a0a3e","","root"],["e","57463e84f0e1b4719df0e44c5a4ec1cb8594daca5edbc2697f6c334928fced6b","","reply"],["p","8fb9450003a599bb1b34f03fadb9b137f6c0e5a850ba205964bee4732ccce549"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"]]}] +[11:27:01.727] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"more than *one npub","created_at":1759332419,"id":"1431a45c3187f487402e5d457be7cc218ebc48e5af68bbe24cb7e4eee8a394f5","kind":1,"pubkey":"dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491","sig":"3c0efde349347f25c442202b6ab2e4365cc434a5556df0b79782e9f1d18a5bf7462e85ccae70fb0f8e892e24c0a2f3004120b80b5870492ce694f074eec61cd9","tags":[["e","347b3ea85e35b7ffa70a6687642d1c27dab648aa5cd8c29b5ba93fd5a2eb56b3","wss://relay.nostrarabia.com/","root","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca"],["e","c3efb06a177731cccec9d4f86cb0b182504dc703db4582655927cbfe35bd23cd","wss://relay.damus.io/","reply","dace63b00c42e6e017d00dd190a9328386002ff597b841eb5ef91de4f1ce8491"],["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca"],["p","24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2"]]}] +[11:27:10.711] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"\"Screw your freedom\" vax guy has an opinion on climate change? I'm shocked.","created_at":1759332431,"id":"6bce4dc8b2e3ceb8df083b186c3876793ea6b30ac9917550b2bc66655fa1b68d","kind":1,"pubkey":"fd31d0a4910f7ce9c46ac63df62781a9981e79a11de16d1664f1feb14f6a8c94","sig":"4a6cf65f410f4316f00f3559d90340e9fe24878bfee56c1ca75a83f2a34a13841f8eda1be0e46b6c401dd36453c83fb21e728ba994a8807c23c63c0510dbbad4","tags":[["e","b2d8bd770d707820e64a62d3c33d47ebd831ceb81b7fed3247bf714f22f21440","","root"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"]]}] +[11:27:10.821] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"âš¡ï¸ðŸ’¬ NEW - Speaking at Climate Justice conference with Pope Leo XIV, Arnold Schwarzenegger shares how he got Californians interested in climate change, using an advert with \"a little kid trying to inhale... and then this child faded... we got to talk instead of the brain, we got to talk to the heart.\"\nhttps://blossom.primal.net/e1795c9211fecab64c13f90361c7e62cceba89e114137bdc610e3849ca05b477.mp4","created_at":1759331500,"id":"b2d8bd770d707820e64a62d3c33d47ebd831ceb81b7fed3247bf714f22f21440","kind":1,"pubkey":"4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","sig":"a504e6799667b4d9161c1e70eaecd488fddb99670caee9ff2c924f34b3cc834726b2e01238bc14b6c142db0f4b2ff68e2d4662feaa97076e55356dbef65882f0","tags":[]}] +[11:27:31.584] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#Czech investors are watching how the upcoming elections could affect utility ÄŒEZ. A likely win by ANO could lead to re-nationalization; if the current government secures a majority, ÄŒEZ could respond sharply negatively. Broker Martin Uher advised investors consider locking in gains ahead of the vote. #CEZ #Czechia #FiatNews","created_at":1759332432,"id":"21672cb51185b1bb34aa4272b352ce24e1f956420587e581654f17205389c83b","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"5b301c3803efe764d153ecc2b4c8a1c18cda454dc43d7ee87cab56bbdacb53fab07ebd1bf81f26cf9e774ae0ab38133ef3b8b658976379ce255b1459c71fb7d6","tags":[["t","Czech"],["t","czech"],["t","CEZ"],["t","cez"],["t","Czechia"],["t","czechia"],["t","FiatNews"],["t","fiatnews"]]}] +[11:27:38.683] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"It looks like nostr:nprofile1qqsd0kqsnmjrv47wvpt2mfr9xqrthdjp7v09p6zjgd5pcfey2puprmqprfmhxue69uhkvctwveshyetn9ehx7um5wgcjucm0d5hsz9thwden5te0wfjkccte9ejxzmt4wvhxjme0gkrqmk has finally made #zapwall a thing.\n\n I'll test it and report!\n \n\n","created_at":1759332458,"id":"5d52063550c59ba78a707ef2423db7de3fb10b5f340cef155d9a589d0523d0bc","kind":1,"pubkey":"61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c","sig":"98a0f20ed9209620d433b7af51d26987b1f248ddb9269f4476987a7e264f510f51b7604bf1d80f215899a2535b2702c8f5e4007599685677c8d559059530a6b2","tags":[["p","d7d8109ee43657ce6056ada4653006bbb641f31e50e85243681c2724507811ec","wss://fanfares.nostr1.com/","mention"],["t","zapwall"]]}] +[11:27:46.081] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Bitcoin is not something to worship. It's just a tool, sound money, and an escape hatch from currency debasement. We opted out; we're grateful. We're able to preserve our time and energy, and now we can focus on the things that truly matter in life, such as personal development, helping our community, and closeness with our kin.","created_at":1759332464,"id":"0e0c980b7b8d068e86e29400454ac549ea93bbecb373247b5adf0f39da8c9e1f","kind":1,"pubkey":"39cd6acd40e0301b250ebff26c7b181ee0a039b769f59e1ee9158fb5a2427731","sig":"bcefbca8d708f4288ef9dd30d2fd83fa5319fd0d82680f33e76a69a57474d9a8f6adc3f0b7a6d906c71941bbd0995a959e52a6112f82052d0abc6e0611e1999a","tags":[["alt","A short note: Bitcoin is not something to worship. It's just a t..."]]}] +[11:27:46.972] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"There's a study behind everything these days. ","created_at":1759332460,"id":"2992a4513960979d315ca7f66c911b7f60da256d5b757aed116075142b51aa1e","kind":1,"pubkey":"5143c373df1b548a77d79ec74f27255d129b695b522dfb5bf43498ba4b501df9","sig":"677e5315e9d246f395e3453f8a235da87de16b33360735efb851e7857bfde32af83445880a53038415e782ce118297f40f500e2bdc5a670cdd94c612ad44636f","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root"],["e","3ba1808bb29df6cfec17a303008b6faf839b02e87f16e36e453994184349f1d7"],["e","37745cfe54cdd9b056ba142bcaf014fdef63fc20cffbc61f2d40ec0b32bc38be","","reply"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["p","5143c373df1b548a77d79ec74f27255d129b695b522dfb5bf43498ba4b501df9"]]}] +[11:27:47.489] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Gm â˜•ï¸ ðŸ«‚ðŸ¤™ðŸŒ„\n","created_at":1759332003,"id":"b7ca0e221b864f132bd645c4260ab0fb23e39752cc03d13f055db24905e586ab","kind":1,"pubkey":"d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","sig":"2a2ec6b610393fe65d20b2a6c287dc3487e66580539e3ea9faeef4d49431637560aae4beec9e7fa8f45091db418630e57435d9ed6bc5912a1dc6ced25457eacc","tags":[["alt","A short note: Gm â˜•ï¸ ðŸ«‚ðŸ¤™ðŸŒ„\n"]]}] +[11:28:00.991] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"What are you watching man? 🤣","created_at":1759332480,"id":"afd9a0450c81b423677210fc9532835bb6e0b4722cc959f37a455e5f33562cab","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"6775f864e2b7a8290b9d078f03fabebd8e88479c6bcd8a164515b2cc6878120dfa6cf2dfd6c6f296068937590733ef476d38e91bf4de85a9e2a6d72eabb64356","tags":[["alt","A short note: What are you watching man? 🤣"],["e","1467f25fc760ab1fe33444d88fe39e85529ae1f7fbee1e74bd9d85ca45cd818b","wss://nostr.wine/","root","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/"]]}] +[11:28:19.694] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I gotta get out of here. I'm sinking. Let go, nostr. I got shit to do. ","created_at":1759332498,"id":"733c86fcb424af83e56411d2ce5f35ab5e6ed6889e8acfc4ee66e6187d6e9e7a","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"cae2cbc4cdb57e6a5c725a8d84f84eda4a5b558001a8f4d228154074e6ea9948bbd858cbdc3a55fadb74b8999c2804bd8b471a2ff56ad20cea5d70ce89ed4e52","tags":[]}] +[11:28:21.433] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 NÄ›mecká policie zatkla podezÅ™elé z Älenství v Hamásu a z příprav útoků: \n\nKarlsruhe (NÄ›mecko) - Policie dnes v BerlínÄ› zadržela tÅ™i muže podezÅ™elé z příprav teroristických útoků a ze Älenství v teroristické organizaci Hamás. V tiskové zprávÄ› o tom informovalo nejvyšší státní... \nhttps://www.ceskenoviny.cz/zpravy/nemecka-policie-zatkla-podezrele-z-clenstvi-v-hamasu-a-z-priprav-utoku/2728359 \n#CzechNews #News #Press #Media","created_at":1759332482,"id":"e444b733176ae7bce49c378c5624dbae2e661d1262e8fcb95136c87d2e891879","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"b2d93f8977e25bb96cd9f93c0be4b757624f9d26365617aa828a7428304708bb2ffb3e6b893d845ddf7da7e605c384e1881ea2f24bfdf304ade4c39bf4158be8","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:28:22.537] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Bitcoin has too many talkers. Protocol debates. Political theory. Words stacked on words. Meanwhile they keep their money in the same banks they claim to distrust.\n\nRead the latest: \nhttps://livingonbitcoin.substack.com/p/the-bear-410\n\n#bitcoin ","created_at":1759332502,"id":"203f89fe7ca1b4e6c3516358b888a1da1497a906dd5ac40445602889973afbc2","kind":1,"pubkey":"fd0bcf8cd1aee83fe75e6c0fdfc543845e5bc3f50d26d2d5e5c6d3fa521f98c0","sig":"f418bba6dd404e2c3235346b98645417bad1fa5c11e406a08a10a604cc40d516bc618975ab459af596c0357edce5f2ee2f685402beae5fe141d6dd1ad265cb50","tags":[["t","bitcoin"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:28:43.707] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://image.nostr.build/4e108a9b1332adb58109dc08dc716a42d8dd0b5e56cec51d4f7708c228c27739.jpg","created_at":1759332523,"id":"68623e9e5671d21be043fb2a426f4dc4f4381db217a903d6372e16bf91eb2b22","kind":1,"pubkey":"1bb2cbacd45ad06deacc72b7ade041bfed118be51b287859e3d1b466069759a0","sig":"276c0d7cf35920184bb6602335abc50d05164300343521c218c130fcfc03a55a2bc2aad2bbe81e18e3548477511b1d40d2ae2ab54f2097cb24c4f13b6e928c76","tags":[["alt","A short note: https://image.nostr.build/4e108a9b1332adb58109dc08..."],["r","https://image.nostr.build/4e108a9b1332adb58109dc08dc716a42d8dd0b5e56cec51d4f7708c228c27739.jpg"],["imeta","url https://image.nostr.build/4e108a9b1332adb58109dc08dc716a42d8dd0b5e56cec51d4f7708c228c27739.jpg","x 4744b09a94fdbd8e80d8ca8f41813977927f56269acd93fb1c6f5a587b028e87","size 27967","m image/jpeg","dim 640x640","blurhash UJJ@:z~VW=t7AJxYWDfk9vs.a|WVJBfioJWC","ox 4744b09a94fdbd8e80d8ca8f41813977927f56269acd93fb1c6f5a587b028e87","alt "]]}] +[11:28:44.505] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I'm only seeing this on BM and not NN","created_at":1759332524,"id":"bcf66da9a4e3adabe2bc37a6ebf2f42907b38562114a4652a2309c4f2047e741","kind":1,"pubkey":"e0921d610ee655396cfac6c9907b6ad11f3a1dde5770029e1284e6cae0fe7bd5","sig":"8747b99d99c8f94ae6cb0472366fc2a08dcc819f49dd158a76ffb923c2d80b42020486fb92b7e547d9bb0b256b51850ac546cb57a1343006f28bca17d0becf97","tags":[["e","0944824f056807030190fd0a35f468bec93a2614a96d83be0f7bee557c32b939","wss://bitcoinmajlis.nostr1.com/","root","01b45a280f52e586a6734a7dc5f9ae2d04d7e05f3ab8e48a85e83d04ab39a0f8"],["p","f33285217e976ad9caf0546445ad8107db98f65967cdce6cce45e60da00ee32a"],["p","01b45a280f52e586a6734a7dc5f9ae2d04d7e05f3ab8e48a85e83d04ab39a0f8"]]}] +[11:28:50.455] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"sora2ã§å‹•画作ã£ã¦ãªã„ã®ãŠå‰ã ã‘","created_at":1759332529,"id":"843ba3629223d413a5f2e73b99ba93fb2604cdfdab280e7d7ff99b6816b79266","kind":1,"pubkey":"4e86cdbb1ed747ff40c65303d1fc463e10aecb113049b05fc4317c29e31ccaaf","sig":"95a8d04b7413a093d2d41084cf6533de603ba8124beaefa05c3728af92f3557c4f4f9931a135e9c3823907b9c342b05c0a1147770f713b479d8c25c9a6dafafc","tags":[["e","db596a9e904846f1ec6204ccabf2eb96028e72ff20b80f9600c740fc3c281e3e"]]}] +[11:29:01.122] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"A guy at the grocery store. It was site to behold. I don't live in a place where this is common so it was really something. ","created_at":1759332540,"id":"5d2b3bccfeb6d315b2e93a2b5ca1c7429880fa8659496af531dda22c545ff7a2","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"6c5d21d82c2f0606b65233f738dc36caa7eb9e1f776f4e82a389f8586bd04760c5bd6e04277983de6f5a124f6b6f49eb777824bdca9ab0beb6682af3791feb51","tags":[["e","1467f25fc760ab1fe33444d88fe39e85529ae1f7fbee1e74bd9d85ca45cd818b","","root"],["e","afd9a0450c81b423677210fc9532835bb6e0b4722cc959f37a455e5f33562cab","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612"]]}] +[11:29:13.319] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Interesting idea. What age do you think is enough? They're 5 and 6, still srunching through basic numbers and letters, not words. ","created_at":1759332554,"id":"4e65cf771abc062445b379908910bbf84f391e9827b989302f20bbaa93a99f36","kind":1,"pubkey":"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","sig":"ece171ae3831094c61bd5d3823e9d838ee5799794eba752be422c79f3fc9ee87ac8ec7fa8747fbe73fb3682a4f6209413b5c7017bfe85ff500a8a5901e3d89b2","tags":[["alt","A short note: Interesting idea. What age do you think is enough?..."],["e","09a67144a93a44309af14b4a4d0f0941c6711d615cf6c173de37bc56a3aff304","wss://relay.nostr.band/","root","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["e","6e767f052d396c9b00cac4a0cd165fac5e883c6797d66e9af2b393d98b8cfca2","wss://nostr.mom/","","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de"],["e","a26032d29566a3adefe0b8dbd674674e3bffb8345215830452d93bc31a1fe462","wss://relay.nostr.band/","","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe"],["e","69f8909814cdd5762825a97912f83df2446aec0f9d4d0c3b92f53e85df6d54b4","wss://nostr.wine/","reply","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de"],["p","fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe","wss://nos.lol/"],["p","d4bad8c24d4bee499afb08830e71dd103e61e007556d20ba2ef3867fb57136de","wss://nostr.wine/"]]}] +[11:29:18.505] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 Berlínská policie zadržela tÅ™i muže podezÅ™elé z Älenství v Hamásu: \n\nBerlínská policie ve stÅ™edu zadržela tÅ™i muže podezÅ™elé z Älenství v palestinském teroristickém hnutí Hamás. To je mÄ›lo pověřit shánÄ›ním zbraní a stÅ™eliva, které mÄ›ly posléze být použity k útokům na židovské a izraelské instituce v NÄ›mecku. \nhttps://www.novinky.cz/clanek/zahranicni-evropa-berlinska-policie-zadrzela-tri-muze-podezrele-z-clenstvi-v-hamasu-40541553 \n#CzechNews #News #Press #Media","created_at":1759332539,"id":"efd9d6d9963e6014d2631a130924d84ab86b2f48aca1903b43dd4e8d8671c055","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"a3d26990c60e47062575e5b79ed5eee52971a370480df9a326612b39cf9a8fca06dd1c12a0cddc06bfd3c6ed315cc3006c0c7c6e82dacf5759723761559ac080","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:29:29.051] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I am pretty sure the world is better off without my writings ;)\n\nSome art needs to be created but should be destroyed too","created_at":1759332568,"id":"ef2cec4f78b43c514679f6dc40d4177cddac36a48a89d24efb4dc02921e0b91c","kind":1,"pubkey":"f5bcf31413c3a5334f2abb5e9e66e4691bd92b6e29a4068e8e9caf550507683d","sig":"924cde373197859b5223895cf80c29eb2a853e4c5e5c39bd947d6cd31edf01e983abef40b961fd3f9ee1225af7e678b363518ced00c8f3ae0a91eb93999ceb8a","tags":[["e","2f359505137d8708a0dd28aa9c479af03c8c6dcbd34c149e666f4e25e022ab39","","root"],["e","e4408ab6f7347cc43597ec56d85bb7a44af3230bd78428c30a87af603f7a5a03","","reply"],["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7"]]}] +[11:29:29.084] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"It’s really hard to lose your old writings. Sorry that happened to you. Truly. \n\nThanks for the compliment. Poetry is one way for me to express myself but more importantly it helped me heal. ðŸ˜","created_at":1759332204,"id":"e4408ab6f7347cc43597ec56d85bb7a44af3230bd78428c30a87af603f7a5a03","kind":1,"pubkey":"ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","sig":"ab73562a8ce7885e957c2299c35be9d346ca6aa83e18d54047b0c397bfb80c9ad27bf46b83a4c279c1de66177f643ec8dbdf6969b2051e4761871d11b8c9fb66","tags":[["e","2f359505137d8708a0dd28aa9c479af03c8c6dcbd34c149e666f4e25e022ab39","","root"],["e","3982bb1556da40ac1f163da79780fe7d55ff01659463f63e2ba0a5328c1e3294","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","reply"],["p","f5bcf31413c3a5334f2abb5e9e66e4691bd92b6e29a4068e8e9caf550507683d","","mention"]]}] +[11:29:32.178] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"legalEZE 🙃;.;😀","created_at":1759332572,"id":"de0a090464cd1c845692e640271a2b47bcf0b358600876f34c2616d09411799c","kind":1,"pubkey":"dab9562a4b156617923fb2bb31d59bab075ffa5f1f885a811fba468cba18162e","sig":"83e17a1e90025cd8af60f2842141e0276b56973b26998280fd4687d98bee95a5846f3ea63871dbb1d568678272cf652474c6bd0713cd92a3277377a1f440ee68","tags":[["e","ec0ba12e1cd19496bd9ecf379f8e365558ea58e761e44fa93a16018fa9b14d8d","wss://relay.damus.io","root","f4d89779148ccd245c8d50914a284fd62d97cb0fb68b797a70f24a172b522db9"],["e","05c4c5ec26b559c779d1bd6f05ada06213746554fabcdcbbf2e9d4d8ce187a5d","wss://relay.damus.io/","reply","67ada8e344532cbf82f0e702472e24c7896e0e1c96235eacbaaa4b8616052171"],["p","f4d89779148ccd245c8d50914a284fd62d97cb0fb68b797a70f24a172b522db9"],["p","67ada8e344532cbf82f0e702472e24c7896e0e1c96235eacbaaa4b8616052171","wss://relay.primal.net"],["p","f4d89779148ccd245c8d50914a284fd62d97cb0fb68b797a70f24a172b522db9","wss://relay.primal.net"]]}] +[11:29:42.250] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Needs right funding sources though... ","created_at":1759332576,"id":"e55502ae44418db14ecc26f4524a699642b2c463595336fabb7acece7ceab953","kind":1,"pubkey":"5143c373df1b548a77d79ec74f27255d129b695b522dfb5bf43498ba4b501df9","sig":"869225997c3063198f43c1c349c90bf9a6a613e0e5f7e4df536f375306eb0ad7d97ee279dc66e89627458af23cf2d1dde66244a5610e1a911a1ecc1a9ed4a333","tags":[["e","184b2ad481e0766c3b54cc753cdbbf990ed054ab41c2619aadb895b882452604","","root"],["e","37745cfe54cdd9b056ba142bcaf014fdef63fc20cffbc61f2d40ec0b32bc38be"],["e","2992a4513960979d315ca7f66c911b7f60da256d5b757aed116075142b51aa1e","","reply"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["p","5143c373df1b548a77d79ec74f27255d129b695b522dfb5bf43498ba4b501df9"]]}] +[11:29:50.023] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I didn't actually check the dick. The 5 o clock shadow and impressive stature kind of gave it away. ","created_at":1759332589,"id":"b7c7faff0086d1f62b614e7827ca59ed89b3bb24d91852d5071717fffd554224","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"62abf1a27eee2d61834c64595aa20569029a52ef86d10e5863cc43901ce417995aba944388ef036370823c74c5c3b2502287e1850c2e3203bb6d11a3cce10cb9","tags":[["e","1467f25fc760ab1fe33444d88fe39e85529ae1f7fbee1e74bd9d85ca45cd818b","","root"],["e","afd9a0450c81b423677210fc9532835bb6e0b4722cc959f37a455e5f33562cab","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612"]]}] +[11:30:04.438] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"äº‹åŽæŠŠå·²ç»å缩的ä¸å†å…·æœ‰ä¸ç¡®å®šæ€§çš„事件分æžçš„å†é€å½»åˆæœ‰ä»€ä¹ˆç”¨å‘¢ï¼Ÿé‡ç‚¹æ ¹æœ¬ä¸åœ¨äºŽäº‹å‰é¢„测的精确性,而是有能力且敢于承担风险,在生存第一法则下,建立盈äºçš„ä¸å¯¹ç§°æ€§ã€‚\nnostr:nevent1qqsq0q53kschuu5l8tqfmfd5n00qgxl4k799zy5fp50mfuvjz7cg3zspz9mhxue69uhkymmnw3ezuumgdacz7q3qsxgnpqfyd5vjexj4j5tsgfc826ezyz2ywze3w8jchd0rcshw3k6sxpqqqqqqzqdnufg","created_at":1759332603,"id":"70d3276810dfb8f5a4d01085fe8511fff4b1c77b1cb90a001829371f09a2961e","kind":1,"pubkey":"81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5","sig":"60f1a4564967d9e1c88f9d4c1c0d406a9c4953ff0f504c8963d44e031acafbc2d5537edf37ff4240e4479f091a7c5bedab2071900808d6f1d6f15a487703bb45","tags":[["alt","A short note: äº‹åŽæŠŠå·²ç»å缩的ä¸å†å…·æœ‰ä¸ç¡®å®šæ€§çš„事件分æžçš„å†é€å½»åˆæœ‰ä»€ä¹ˆç”¨å‘¢ï¼Ÿé‡ç‚¹æ ¹æœ¬ä¸åœ¨äºŽäº‹å‰é¢„测的精确性,而是..."],["p","81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5","wss://bostr.shop/"],["q","078291b4317e729f3ac09da5b49bde041bf5b78a5112890d1fb4f19217b0888a","wss://bostr.shop/","81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5"]]}] +[11:30:12.834] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"#memes #memestr\n\nhttps://i.nostr.build/xqTaS3yzjO1q4amJ.jpg","created_at":1759332612,"id":"7ae5257880f857a284a53a23f6bc4a86800154259d32bc056fa4eaa691b0a6e9","kind":1,"pubkey":"27154fb873badf69c3ea83a0da6e65d6a150d2bf8f7320fc3314248d74645c64","sig":"66a389b71f4de55e6248c7640848161769fadb895f989c61e160f2c89ce54681048eba625cbba6bda8c12292e63d66bae1634d5c225d5a5b6130cf97549f986e","tags":[["imeta","url https://i.nostr.build/xqTaS3yzjO1q4amJ.jpg","blurhash eEDSdpXS01xFNGK6IUniS4WC9FR5%Mtl%2$+bbX8wvoyi{X7tQR5NG","dim 1125x1017"],["t","memes"],["t","memestr"],["r","https://i.nostr.build/xqTaS3yzjO1q4amJ.jpg"]]}] +[11:30:19.322] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"kinda retarded to think of \"white\" as a homogeneous group tbh\nand that it's somehow \"us against them\"??\n\nnah bro\nthats not where its at","created_at":1759332613,"id":"1b3a8be200342eac89a65baba84a0099071c5639da6860621dda8b3c273f1c04","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"d543d27467bf9f555ab393ff8e25d7d7fad98b46ffd4fc46c1bf17d9f275e6d454a81aae0e3a2ff75ad038890b257c64fd761b0f6051d52d4aa0a37b13b6b282","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["e","990c6880cef441d04f1ef6ce85209ae331b4760215c8c206074d50c16d0743a4","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"]]}] +[11:30:21.667] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"ç§ã€æ‰‹å¸³ã«ã“ã®å¥³ç¥žã®ã‚«ãƒ¼ãƒ‰ã‚’ã„ã¤ã‚‚入れã¦ã‚‹ã®ã§ã™ðŸ˜Š\n\nhttps://image.nostr.build/323becbee6849c4bb94618cd3ae37377e8cee97c825366d087e8ef56b8b690ed.jpg","created_at":1759332621,"id":"7e3b279c60ff54aa6933423c0ccf4c1272b4f13368a07d588d55ec5f2359e3c2","kind":1,"pubkey":"15b9f4a92b2f4b24b59621acdc1c996facbd37f1b5606045bbd1663ce87eef10","sig":"946aa49d4b14be573074497fe407e25a3c0d24391de1440cfb45be4aa9cc05c520bce8e0db9053f3f82b4b2bb3147a6787901cddc2c3d29285e146a52827ba84","tags":[["e","ebd03138fec785adcb5bcad05da529ef48ff4bec5f980246feb5fdf9f60f1560","","root"],["imeta","url https://image.nostr.build/323becbee6849c4bb94618cd3ae37377e8cee97c825366d087e8ef56b8b690ed.jpg","blurhash egLNV%4T-;o#M{%#x]V@WBt7-;xuRjWBofxut7kCaeofkDa#WAjZbH","dim 3024x4032"],["p","04ea59bf576b9c41ad8d2137c538d4f499717bb3df14f5a20d9489dcc457774d"],["r","https://image.nostr.build/323becbee6849c4bb94618cd3ae37377e8cee97c825366d087e8ef56b8b690ed.jpg"]]}] +[11:30:23.077] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I'm not sure what is baked into my mind more, the modem squeel handshake at connection or The Girl from Ipanema.","created_at":1759332622,"id":"258e3bf8088b8be97af3e5dbacbe68dc7fcf9ea1147366879a00bf59637a0d54","kind":1,"pubkey":"9a21569255d0a3a9e75f1de2e4c883c9be2e5615887f22b2ecf6b1813bcd587d","sig":"7b0f3bda1b683ffb90da39a4faead5a36000efca31446bcca1cd1e7cf3165df3ce744db1b2f487930950245295ab0378711f2ad69767ee34c61279dd61ae8c3b","tags":[["p","e83b66a8ed2d37c07d1abea6e1b000a15549c69508fa4c5875556d52b0526c2b","wss://nortis.nostr1.com/","mike"],["e","99cb270e7c253be479977396f63b568993280f7e68f929848da73bc87628591b","wss://relay.damus.io/","root","e83b66a8ed2d37c07d1abea6e1b000a15549c69508fa4c5875556d52b0526c2b"]]}] +[11:30:27.017] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I’ve got a $150 razor, a $50 razor, and a $15 razor. Guess which one I actually use regularly, and which ones are just lying around on the shelf 😆\n\n#wetshaving","created_at":1759332624,"id":"5ad8e199b627c8a1f74a1f26ec754d8f06a86eaf60dabe918bdae4b0c82bbefd","kind":1,"pubkey":"cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","sig":"e383229297ec396cf47878b8f2ab2a6b908d34fe2a7cf004f37f9ef2db6d6b5bd9d9571cc90642c824f7ad9a74959270a5af2b052898a3ad29fbf2160d96c0a5","tags":[["alt","A short note: I’ve got a $150 razor, a $50 razor, and a $15 razo..."],["t","wetshaving"]]}] +[11:30:39.519] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Ê• •ɷ•ʔ੭â¾â¾ï¾Œï¾˜ï¾Œï¾˜","created_at":1759332638,"id":"66ef6c578af52902b802b22b34728938b29240b0e73aa00113b01cfa8b05ceb1","kind":1,"pubkey":"a2ee3c86c25f22a23e0bd7b8af18631a994b8d67a9fba7b657a9db63560c8c47","sig":"823cfeb3ec247fe03375f5d8c4ce20ad52cae37a5867b5f5d8bca8be7ffc8306762a047c4a72a41a76c8b73b95128ca79bbb5fed1901d74b591e1b2ed604533e","tags":[]}] +[11:30:41.868] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I'm retarded too. Someone already reminded me today. So I wouldn't get it even if I wanted to. ","created_at":1759332640,"id":"e640a8bb7caffe5df779396791e500e3c5f8b6e20afc87b369bd3370c24d0530","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"f07ce896b5c561e69dace7ab1f06a70c00aaf3419cdc5070112ff01a6f4add88d9fb8e1cb0447516d805b4e524ed0f2e7a46a7b97be59304f9417336c5cf2331","tags":[["e","b011064ca62486aea4f22faa58491cfbad4d46c7225073be957134a61e7d20fe","","root"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","b133bfc57bed61c391d4e8f953b906c7f1709c438d91c75fb6daf79449d5789d"]]}] +[11:31:10.893] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"there are lots of ways to be a human being.\nseveral of them do not include your own biological progeny.","created_at":1759332664,"id":"e7273c87988a096c817793f252dd7121ce40f0f79df6b5117f756c9d6432a0ff","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"57011d728624c42b456f8f8ef91f4f7116a24aef2171807d817c6c8b19a7033888b5e2737796388cacb7b2b60c8e5b2339ee85b88b1627e1ca1b04541720e638","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"]]}] +[11:31:22.351] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"ï½µï¾ï¾Œï¾Ÿï¾šï¾Œï¾žï¾ï¾‹ï¾žï¾ï¾Šï¾žï½°","created_at":1759332682,"id":"22e214163f45960b932a95370ee720b9ee29fca062bbe0c4115734d3c0701bb4","kind":1,"pubkey":"a2ee3c86c25f22a23e0bd7b8af18631a994b8d67a9fba7b657a9db63560c8c47","sig":"101157ff30337a41ee751da36ecd8cfd0695610624a14979d6f9d6d86a053d2981f67d2159304559b6ccf558a25da05c1caa1e32f0ad4c4c2f684c88493557b4","tags":[]}] +[11:31:23.867] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Although I disagree with Peter Schiff on Bitcoin, I have huge respect for his ability to articulate what’s broken in the credit-based system. Few have done more to raise awareness and explain the problem so clearly. Highly recommend this book to anyone.\nhttps://blossom.primal.net/a30aaaba54bbf0a3782b0fb1d92ed58287633446bd5c0fb6a04737110ef095f3.jpg","created_at":1759332670,"id":"561010113dfe925a82bd8356cd0ae595abf4859877fe1e78a3682711915b7698","kind":1,"pubkey":"3b8ec298bebdbc9eb8d5d183e5c8c6ccd114450dfd92de2cb56f7af9175bbf7b","sig":"74349931a59f5d506b5d79a1139830e407db272c47b8b8daadc33714d4d2a6686084214dc779664206f507416ff1d48112e4ca9e0eb773a182a04e04f9d8c2a3","tags":[]}] +[11:31:38.129] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://cdn.midjourney.com/1eeb6cce-919d-4f8a-8e85-a0cc954f1335/0_3.png","created_at":1759332697,"id":"3e72d1f61917b01a6b71b5fb4ba444dac5c50a4d38cae1a118041ae900b027fc","kind":1,"pubkey":"431fa2f340f0adf8963d6d7c6e2c20d913278c691fe609fd3857db13d8f39feb","sig":"fa75f4bb7553d6c71a18bfcff3c9b48c29301f69d11855646c03dccaa7834e7e0ec32c73f93e00b4108d8cc57aad00fe79c32ea0d3d65782b81adbd119e51f3c","tags":[]}] +[11:31:45.124] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"embrace irl imperfections \n\n","created_at":1759332698,"id":"6e358f3d097796ea3ba3e4ce79a6da42b807e0381df0c89e67704ae23b176c6b","kind":1,"pubkey":"3663a0e0adb2b3b173e673d613917f5dc2b21de321caea0dd1b28e96905df846","sig":"06609fabca6561b8ed9586fee4c63e72ea538d1a02f90b8a35138e2bba8e1686c7c3035ef64098a175291b0bb7e2bbd6c855d929ed057694ff89d23821c87138","tags":[["p","47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","wss://nos.lol"],["e","1dee98328663bdbffdc58a1ee58e95d69bc7907b72e29de7b8ddd0fa5bc90439","wss://nos.lol","root","47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3"]]}] +[11:31:47.758] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That's a great friendship. I'm so happy you have each other. It helps to have someone you know loves you but won't let that color their view of your conversation, etc. \nI have this one friend, she and I are the most honest sounding boards for each other. I know if I come to her with some \"tell me if this is too bitchy or if I'm right\" I'm gonna get the truth, even im in the wrong. I love that bitch with all of my everything I can. ","created_at":1759332707,"id":"f021da07890a8b9e4ec9aab05c8c42bb3415f79d0b88a08fbf6ff3fa31fcc536","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"0f2862f29737fc66cfba40bf6d9da6fb570bccbe6ef6532a27ae35d5cbbdaceec5da689ec25dafae76007d55f08448b3c6f033203ee0595c2924dde665bce30b","tags":[["alt","A short note: That's a great friendship. I'm so happy you have e..."],["e","e8dbb79052f85db1a3a1813f584da70711062c7dd4c6f651947433faebc8e664","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","018a58ed1ff33f5fd6c322320bf2794d6bbefd6b9788e6abf3e8897ca737c398","wss://henhouse.social/relay","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","acceec06b835e0e7aa1caf0acbe964e7fa6508d8c1c4f7bfe41e42a622767af2","wss://relay.coinos.io/","reply","6a02b7d5d5c1ceec3d0ad28dd71c4cfeebb6397b95fef5cd5032c9223a13d02a"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","6a02b7d5d5c1ceec3d0ad28dd71c4cfeebb6397b95fef5cd5032c9223a13d02a","wss://nostr.land/"]]}] +[11:31:57.972] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I agree. It's a very human thing to do though. ","created_at":1759332716,"id":"f6597c0bbc23d206aad6272cd5bc750fcaab8cf092dbbfac6f087eca498251d6","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"871d2744f3289dba3b18fbb4c49e78bab49ad58654a84d201d6aa11bb62405e266d0dba6b459267967512608b4e11065ff3c8aceadc09c478d5f790b500aba88","tags":[["e","724c6f642a690bd48f5d80538509635e6136e3ce93b7fd095f76d0aadd541e5d","","root"],["e","b126599c02059bffa5ee0ea9f809e598087c05ec965cff63163a04d62f7319ef"],["e","e7273c87988a096c817793f252dd7121ce40f0f79df6b5117f756c9d6432a0ff","","reply"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb"]]}] +[11:32:22.561] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"The one time I got less than a 5 as a passenger (I know because I had 5.0 prior), was when a woman clearly wanted to talk and I did the \"listening to headphones/busy\" thing. Guess she felt slighted.\nA quiet driver is the best driver for sure","created_at":1759332735,"id":"31e9871eee37df22e9a873aa2257d36563880cb6f68533e6789f2bf5febb19fa","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"677d0a46486d2c812f2fe9b4ad4fa9ec78c221d3efa22d045a899291689b0363edfa682ee68722168fae9174f17431a0a40f4abefeb6fba202b3e7b4ca3afba3","tags":[["e","6394f5f33b7fd7ea70ff9743ec3a4cf058b2ba106071219c125913c548063e77","","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"]]}] +[11:32:27.950] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"There is an opposite to paranoid \n\nThis where you think everyone is talking good about you behind your back \n\nPeople are thinking about you in a positive way \n\nHoping for your success \n\nPraying to you Ect \n\nTrying to help you behind your back \n\nI am the opposite of paranoid \n\n","created_at":1759332736,"id":"bc2b85143b1bd5761d4f833304bafea6180ef96f716a21e0a38191483033e7cc","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"3e609c45b63d425437020271229e2100aac0db1d20c20a32c5e2646bb4d5b53901ef970123a0b74f7b0a8fc45bf607a2dd7ad1d674094a605a8f94a6c5e48fc0","tags":[["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[11:32:28.289] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":" \n\n\n\nhttps://blossom.primal.net/7d4bdae7bb2d93d62b129906775eb78bdd53c57510e4f90dcaa630a2d485588b.jpg","created_at":1759332747,"id":"619d413876b54334448f2cc4cea63d3e62c071368ec97032a80870f265571c6b","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"7147375c847354a7bfadd108a5e545e0e2a00082bc911663e3e161ee5481830abb760b43a1d48bec90d8c2a138e802b1d8fb8ae78e1d73e0a2758de1df6e966c","tags":[["imeta","url https://blossom.primal.net/7d4bdae7bb2d93d62b129906775eb78bdd53c57510e4f90dcaa630a2d485588b.jpg","m image/jpeg","ox 7d4bdae7bb2d93d62b129906775eb78bdd53c57510e4f90dcaa630a2d485588b","dim 1080x1349"]]}] +[11:32:34.459] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"That girl is amazing. The way she moves is... captivating. And the way she plays is absolutely talented. And she's having so much fun. ♥ï¸ðŸ¥°ðŸ˜ðŸ¤© https://video.nostr.build/0e69a235e13d125fe269ab8fc997c0d1d9115485507ca2a1ef5917728dc9a8bf.mp4","created_at":1759332754,"id":"1e7bb59757f4470c308fa27582a859ccd718aacfb906cd4c34da2715cc7fb69b","kind":1,"pubkey":"47f97d4e0a640c8a963d3fa71d9f0a6aad958afa505fefdedd6d529ef4122ef3","sig":"b1f0ee19a6975d5432cf8d46a6b5aa12f218911986db63f9af31634f30339804586e3c3295f71c56d46edfaed9b6fbeeee0a6919e83b3f8acad82c0600481a9d","tags":[["alt","A short note: That girl is amazing. The way she moves is... capt..."],["r","https://video.nostr.build/0e69a235e13d125fe269ab8fc997c0d1d9115485507ca2a1ef5917728dc9a8bf.mp4"],["imeta","url https://video.nostr.build/0e69a235e13d125fe269ab8fc997c0d1d9115485507ca2a1ef5917728dc9a8bf.mp4","x 3c1ec77be8a3e5ffd4e458582d2626bf17ebd05a85ad54f933d4035f4fc64b0d","size 8404234","m video/mp4","dim 640x640","blurhash U6ECB@VrM{?a%h4.~W?a.70L~W-p0KWBx]xu","ox 3c1ec77be8a3e5ffd4e458582d2626bf17ebd05a85ad54f933d4035f4fc64b0d","alt "]]}] +[11:32:48.416] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"https://image.nostr.build/a0f4ef6a626dca2aba274061157cf3e57353ad6de897c6d55c16b3099d8251a4.jpg\nnostr:nevent1qqszf76w3snegvtycv0j7atmutkupf5rzyg49urau7ye784kgu5r8zspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyrpnypr4ypjqy6lecrc0ueese76z86yy6ktpknfzqzsk4mmznahegqcyqqqqqqgp5glxx","created_at":1759332768,"id":"ef0dbd8facaeb80f11e92f6bfd8de03b3dd4ec33beb13d32aa48f399c8a7bdba","kind":1,"pubkey":"e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","sig":"8913509ba72109f8b960b5ead119298fc0ac945050bd7235155410365bb105f1ef9da97f6a9ff33aa9bff62fcc96ce812ac232825df98c119456051b4f55c444","tags":[["alt","A short note: https://image.nostr.build/a0f4ef6a626dca2aba274061..."],["p","c33204752064026bf9c0f0fe6730cfb423e884d5961b4d2200a16aef629f6f94","wss://relay.nostr.band/"],["r","https://image.nostr.build/a0f4ef6a626dca2aba274061157cf3e57353ad6de897c6d55c16b3099d8251a4.jpg"],["q","24fb4e8c27943164c31f2f757be2edc0a683111152f07de7899f1eb64728338a","wss://relay.nostr.band/","c33204752064026bf9c0f0fe6730cfb423e884d5961b4d2200a16aef629f6f94"],["zap","c33204752064026bf9c0f0fe6730cfb423e884d5961b4d2200a16aef629f6f94","wss://relay.nostr.band/","0.9"],["zap","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","0.1"],["imeta","url https://image.nostr.build/a0f4ef6a626dca2aba274061157cf3e57353ad6de897c6d55c16b3099d8251a4.jpg","x fdddd441db4b90dcb4021b397a800578998260f60400e59f567832350ce5a242","size 53148","m image/jpeg","dim 985x1214","blurhash _RRM9=4nMd%M?^%MpI9t4.NGxu%1xaV@WqaKWVofxatRoK?b%ft7ofbIxut7?v%LxuofV@kDjs%gwdt8kCRPR*V?S#SgogjbRiRPWVHqWBi^WBkrV@bv%#tRWpWBVsV@V@","ox fdddd441db4b90dcb4021b397a800578998260f60400e59f567832350ce5a242","alt "]]}] +[11:33:07.446] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Me too","created_at":1759332786,"id":"6b751ccbda9acb78ba301ccb3ff7894e431ab6667ef19f4197311e06cde09da8","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"dfe66b1749a504a6e7ad6e87e75e9e4b67e793ec9e8577ea461deee199bbf91705646d269c8ad8838d8bba807876b2441efec349d8de07ca431dddfb9e11d832","tags":[["e","bc2b85143b1bd5761d4f833304bafea6180ef96f716a21e0a38191483033e7cc","","root"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"]]}] +[11:33:14.149] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Sometimes extra zeros are just extra zeros and a lot of the time, the less expensive tool is the best fit. ","created_at":1759332793,"id":"efb9f11a1385264ed865c064333c3917f2d7446f441f7c258fdf4a865ce004e5","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"ec0df1a1c4e781b0f9b425bc2983829e6327e853fa7b59efca0a99b60fd6a88c9657dd56129f449fe2bec348f9d6be3115474863469cd3262d32cb91266e4219","tags":[["alt","A short note: Sometimes extra zeros are just extra zeros and a l..."],["e","5ad8e199b627c8a1f74a1f26ec754d8f06a86eaf60dabe918bdae4b0c82bbefd","wss://relay.damus.io/","root","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b"],["p","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","wss://nostr.wine/"]]}] +[11:33:20.925] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"late to the competition summit. lmfao. 🚬💋\n\nhttps://youtu.be/UmAxk5H0wFA?si=cT_b6AAleL8Tferu","created_at":1759332800,"id":"8fa235670d6f892d2a111142d0108eab776f677b54c98541ea8ed2e443afbf65","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"1413ffa4e2f01dda1c2d0a3a5446b449a91c4af188cac1732e08bffa28b6082cd2eeb1368939abedc7ff778b3d8b5691a1b11b4b0fbd3f949a9ae1bd7f0f16e2","tags":[["e","19a46da2ba504b26d2797e62baed7dba7444429576283302d015ff34d3bce589","","root"],["e","b3e15588d743c4f162afe403bff8aded9f39314059900ff8c1c299a008b7a39b","","reply"],["r","https://youtu.be/UmAxk5H0wFA?si=cT_b6AAleL8Tferu"]]}] +[11:33:21.141] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"🔔 ONLINE: Postup ruského vojska zpomalil. Alespoň zÄásti teÄ ovládá 19 procent Ukrajiny, tvrdí analýzy: \n\nPostup ruské armády na UkrajinÄ› se v září opÄ›t zpomalil, zejména v DonÄ›cké oblasti na východÄ› zemÄ›, napsala ve stÅ™edu agentura AFP s odvoláním na vlastní analýzu údajů poskytnutých americkým Institutem pro studium války (ISW) ve spolupráci s americkým Projektem kritických hrozeb (Critical Threats Project, CTP). Na zpomalení ruského postupu v září poukázali i analytici z ukrajinského projektu DeepState. \nhttps://www.irozhlas.cz/zpravy-svet/online-postup-ruskeho-vojska-zpomalil-alespon-zcasti-ted-ovlada-19-procent_2510011713_jar \n#CzechNews #News #Press #Media","created_at":1759332781,"id":"38655f5361f33cbc5c9f0fee090c8d93bd971014ad525ef862cd503610ffea03","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"99cfc336eb3b2326c2812a65c87ba9a99a8ce9821d207d1534d726e8701250ae4c9a9f45fef78a3bd32e35b66dd5d10e5c8495703febdf64c7cfbc3ea5101a84","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:33:23.095] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"I'm going to keep poking because I want you to see. It's all love. Even when I am an asshole. ","created_at":1759332802,"id":"5264f845c3e6c9cefbb5ae4f622d1d39573760bfdf761f1da88e338e46fa77ee","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"262bbb379fdb47528c6c2567f913c6455ad3ba4ac1d23bded9ca2cf5f8bb9c240e25d4c63a1aeedcc9a9074492c38b8d9f3eefb0ecf83407bef27860e0f34bc5","tags":[["e","4495f94f0cbc97c6e464c04df8751e0138883b5484dd36fa87cf3cad6335a881","","root"],["e","f27f0101520fae5b81e447472f72d1c5b7786a0aac1310771fc36b54314b2b04"],["e","59c4b53ea6f5780e557867a889f2bcc38d444cc501ac8eae3ab4d2d2947d22c7","","reply"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","cefbb781c5f914f3d1231aa97cf39cb89c2d3e4b2deda0b26c83bb8b869b3837"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa"],["p","7807080250235b13c8fb67aeaf340f24c33845b2470e7ddc7ec0d40c00682645"],["p","c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11"]]}] +[11:33:23.129] RECV nostr.mom:443: ["EVENT","pool_1_1759330633",{"content":"Just released a great episode of nostr:nprofile1qqs8spcgqfgzxkcnerak0t40xs8jfsecgkeywrnam3lvp4qvqp5zv3gprdmhxue69uhkummnw3ezummjv9hxwetsd9kxctnyv4mz7qg3waehxw309ahx7um5wgh8w6twv5hsqkt7z5 with nostr:nprofile1qqspnzgrfett3asxcuj0gksje6z2zxzpvgd27uvz58m9vsuqh8zzw6cprdmhxue69uhkvet9v3ejumn0wd68ytnzv9hxgtm5dah8jqgkwaehxw309aex2mrp0yh8qunfd4skctnwv46q2agekf — I hope you enjoy it and share it with your friends who are curious about Bitcoin! https://fountain.fm/episode/I8eyu0XotPv22ohZ3deD","created_at":1759332731,"id":"59c4b53ea6f5780e557867a889f2bcc38d444cc501ac8eae3ab4d2d2947d22c7","kind":1,"pubkey":"c48e29f04b482cc01ca1f9ef8c86ef8318c059e0e9353235162f080f26e14c11","sig":"c326fd590de61ca263a4f94a86adf6b4d24785a4b7ead24148766b8d82cf3a2df3410ce3bd86ec9e30416f757a74da27cce9200a60a17e7567ce2a772e8c62c9","tags":[["e","4495f94f0cbc97c6e464c04df8751e0138883b5484dd36fa87cf3cad6335a881","","root"],["e","f27f0101520fae5b81e447472f72d1c5b7786a0aac1310771fc36b54314b2b04","wss://bitcoiner.social","reply"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b","wss://feeds.nostr.band/tony","mention"],["p","cefbb781c5f914f3d1231aa97cf39cb89c2d3e4b2deda0b26c83bb8b869b3837","","mention"],["p","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","","mention"],["p","7807080250235b13c8fb67aeaf340f24c33845b2470e7ddc7ec0d40c00682645","wss://nostr.orangepill.dev/","mention"]]}] +[11:33:26.219] SEND nostr.mom:443: ["CLOSE", "pool_1_1759330633"] +[11:33:26.220] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759330633"] + +=== NOSTR WebSocket Debug Log Started === +[09:52:11.529] SEND nostr.mom:443: ["REQ", "pool_1_1759413130", { + "kinds": [1], + "limit": 10 + }] +[09:52:11.840] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759413130", { + "kinds": [1], + "limit": 10 + }] +[09:52:12.339] SEND nostr-pub.wellorder.net:443: ["REQ", "pool_1_1759413130", { + "kinds": [1], + "limit": 10 + }] +[09:52:12.339] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"一生胸ã®å†…ã«ã—ã¾ã£ã¦ãŠã„ã¦ã»ã—ã‹ã£ãŸã­ã€‚\n\nnostr:note1pu4hrgx5xk8vu485htux9tk9mc49fl22ehjlxrgme7eughwxj06qthf6ja","created_at":1759413108,"id":"e28e72ec2977a869021551929c666ccb529e65f09866ea0054fcac713fc8f2ee","kind":1,"pubkey":"23395bce1a18fe5ff5bde153fcd47ecd1cd66e686684dfd2cfcbd9fafd305cb3","sig":"457677b5a362035a6645d344e212ab0cbd2c5517616e276b73f4f910da947170094c8c0b26e886ca4a20e5fe0619923471f4af35344b427b08b516554837f630","tags":[["q","0f2b71a0d4358ece54f4baf862aec5de2a54fd4acde5f30d1bcfb3c45dc693f4"],["p","23395bce1a18fe5ff5bde153fcd47ecd1cd66e686684dfd2cfcbd9fafd305cb3"]]}] +[09:52:12.339] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,382\nBlock Hash: 00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480\nTimestamp: 2025-10-02T13:49:00.000Z\nTransactions: 4,548\nBlock Size: 1.49 MB\nBlock Weight: 3,993,207 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917382","created_at":1759412963,"id":"3cfdc1615b75989be25b136686a03bbe0325099b5bcacf401c41cb0bd401f1b3","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"688c50644ffd5a3de49dea003e75515169ab417f70cc89c02644665721be6aa55063100f12e637e257a43970872f060b05398e42c86f60deab1ecbfb1d651ed1","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917382"],["published_at","1759412940"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480"],["new_block","true"],["block_height","917382"],["block_hash","00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480"],["block_time","1759412940"],["tx_count","4548"],["block_size","1560714"],["block_weight","3993207"],["difficulty","150839487445890.5"],["previous_block","000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["mempool_tx_count","127"],["mempool_size","33941"],["memory_usage_pct","0.1"]]}] +[09:52:12.372] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Have you watched already Dexter Resurrection? If not, you're in for a very positive surprise 😠It's is even better than the original seasons imo.","created_at":1759413099,"id":"70d1c7437ee9f7fed6adbeb1b9a194d68c653d8ce83d03039794c71c08d6c9f8","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"91c7a7417cc0ec649c632525ddd9a92625b07a8539dfd74048b077b9506dd941ebbe93fac2112fa2544a1f878e815887d9ca440e1a0058884b43d6491faf5d5d","tags":[["e","a8cfeab1bbc6b0e68f368493613d30407eaa1993d3571732c0abd6308954c800","wss://ditto.pub/relay","root","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624"],["e","799db60d4139f3db6f4a0fb4ccbbb836cb0368b370345700f58001278a0dc27e","wss://relay.primal.net","reply"],["p","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","","mention"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","","mention"]]}] +[09:52:12.373] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"Foto retro 👌","created_at":1759412703,"id":"0c327ff88b7342d428914dac70febd7b4dce30bd957ee8a00b1a6ed93a64439b","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"9e9d35f3c0f0635fa925243e72f76907b61848310072f3b905ecf8e8ccd0fbe0d9cac092cbb45b90a75c60e410086316f5f3fc5a78566f7d18e752203c0b52f6","tags":[["alt","A short note: Foto retro 👌"],["e","0007f8f1cd98b7d282d18ef01779a652fa9040a61cbc227d5665aa2a1fb9922e","wss://nos.lol/","root","1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139"],["p","1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139","wss://premium.primal.net/"]]}] +[09:52:12.406] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"This is the only excuse I will accept. Fair enough","created_at":1759413083,"id":"513a6bdfd8a6308aac3b0c1782412e858fa7812a6203b6eef9c5c280e850aebb","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"5e57e2ccf33ea7e5f5c500a2def8ac1b5bacd10e3939a7c39754bd5a5b4a6617bcacc84c10cf25d5099aee9a7711a13de651c5f4d13b7f08148013173efe0bcf","tags":[["alt","A short note: This is the only excuse I will accept. Fair enough..."],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.bitcoiner.social/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","acbb34b7ed631a821385d3568c7fc58aa27f481b37be24b7004fad44d52980da","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","4c78e8e4578e30ee8c28ea8e96fa6fe29361df7b714bedfd10adf86fbf3ed84c","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","43f76d45c7b677a78aa52a17b1330aaf67a256d96b9ff5fac0cb07597ab594ea","wss://nos.lol/","reply","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"]]}] +[09:52:12.406] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"Slice and dice the troons","created_at":1759412621,"id":"8cbd0158f654c555381342a2a9801a829c30271c6ff75e4101f978cc4f33920d","kind":1,"pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","sig":"2b66f79050d2ce4d0b629a04f923b81a845b93d3821294428f9513a8f79f6a4257972d57178553d5600c281c416e25e9d733b4cc9daf02d765fd859b40b3a8f6","tags":[["p","4bc7982c4ee4078b2ada5340ae673f18d3b6a664b1f97e8d6799e6074cb5c39d","","mention"],["e","53931f85c9f5a204c127c137c74e6957940270a21cd1548294621432fc2716b9","","root"]]}] +[09:52:12.439] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"need more users to come is why, get back to the workshop lassie","created_at":1759413081,"id":"f70b4a2ac0efb432fe06c7cdbcd88a0318bd26e0ee9226b2b3f1bdb4672f07a6","kind":1,"pubkey":"4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f","sig":"fccb552afc1a696e11a57c53fa3f3a6a9dd6bfbbaeceabda254b3b77b8cba29c8cc732835532e4ec38f219af5a6c516285a39cd4fd31102f7458d8d7cc85e81e","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"]]}] +[09:52:12.440] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,381\nBlock Hash: 000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b\nTimestamp: 2025-10-02T13:42:02.000Z\nTransactions: 3,042\nBlock Size: 1.50 MB\nBlock Weight: 3,998,052 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917381","created_at":1759412563,"id":"946c2ec0980d1ddcd9ad37aa139eb470c1d77f6a18f43408d41efc23f87b1c5f","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"dff6b5c1fc24eea4342bb4bd39f04c3bc17231e10a578ab706d698239d034e385f69634d19618619833deaf37bcd28c38a91480ddc15bdd2316c941c13e4218c","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917381"],["published_at","1759412522"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["new_block","true"],["block_height","917381"],["block_hash","000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["block_time","1759412522"],["tx_count","3042"],["block_size","1575288"],["block_weight","3998052"],["difficulty","150839487445890.5"],["previous_block","00000000000000000000992ff5905a8dd09798866a114454dbf494060cd97cf4"],["mempool_tx_count","677"],["mempool_size","147518"],["memory_usage_pct","0.3"]]}] +[09:52:12.462] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"5300a5b2196dfe1d9a0c8d38a390065dc80f3b60a8421c313dc38030d7431045","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759413116,"kind":1,"tags":[],"content":"New OP_RETURN \n{p:brc-20,op:transfer,tick:WTF,amt:2}\nhttps://mempool.space/tx/640516bfa4a481ac12b656301240d9b839320f7d40d5656446773e69a8fe6e89","sig":"c66a06e6e4c73733557d021e951f26a258664825eff419b62809d3b19ea49a91ae091ac1a536d877987934b0a500f5017c22346083de0b261bcbda179ea3f43b"}] +[09:52:12.462] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Fascists gonna fascist.","created_at":1759413074,"id":"43293270a6a591983d2433ab4d5f2c5824fe24486a48212d0f0d31f8be866b3c","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"9d82ea9e3bfb7946e390cbf266131eedddd1e6ef154eacc20537056ff4354de729a7740d4b34c7823554763095593a002f6182b887d1228747cb65b2b4666bd1","tags":[["alt","A short note: Fascists gonna fascist."],["e","341329b226a7b85affc5aaf3abf23263978bffa8c29a3ebab987a0ed9f74f8aa","wss://relay.nostr.band/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]]}] +[09:52:12.463] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"10x higher risk can be .001 that gets to .01\n\nSo don't trust science REPORTING maybe??","created_at":1759412343,"id":"01af5d8cc024dd0d57bbce15719919a35884a24f02639aade5158bae66cc9ac6","kind":1,"pubkey":"6c78d3fbb485c7e5d70ad3bc4987fb740a65f1aa97df9915b16e58d7005ab080","sig":"6ba0264798117be54106861292079205d039d3b0307ee66b5ce50cc0841fa85bc11520fe2aedfa267871da371936e00fee756bc1bb762843cef1f317eb09e125","tags":[["alt","A short note: 10x higher risk can be .001 that gets to .01\n\nSo d..."],["e","6b6022ae6d8ba79abda564e1fbdb959b7b3db039cb43a49f6efb1bb36e2ebb1c","wss://relay.nostr.band/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]]}] +[09:52:12.463] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"e28e72ec2977a869021551929c666ccb529e65f09866ea0054fcac713fc8f2ee","pubkey":"23395bce1a18fe5ff5bde153fcd47ecd1cd66e686684dfd2cfcbd9fafd305cb3","created_at":1759413108,"kind":1,"tags":[["q","0f2b71a0d4358ece54f4baf862aec5de2a54fd4acde5f30d1bcfb3c45dc693f4"],["p","23395bce1a18fe5ff5bde153fcd47ecd1cd66e686684dfd2cfcbd9fafd305cb3"]],"content":"一生胸ã®å†…ã«ã—ã¾ã£ã¦ãŠã„ã¦ã»ã—ã‹ã£ãŸã­ã€‚\n\nnostr:note1pu4hrgx5xk8vu485htux9tk9mc49fl22ehjlxrgme7eughwxj06qthf6ja","sig":"457677b5a362035a6645d344e212ab0cbd2c5517616e276b73f4f910da947170094c8c0b26e886ca4a20e5fe0619923471f4af35344b427b08b516554837f630"}] +[09:52:12.463] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Hey nostr:npub1njst6azswskk5gp3ns8r6nr8nj0qg65acu8gaa2u9yz7yszjxs9s6k7fqx — I just scouted your follows with #PlebsVsZombies! ðŸ‘ï¸ðŸ”🧟â€â™€ðŸ§Ÿâ€â™€\n\nYour Zombie Count is: 141\n\nYour Zombie Score is 27%!\n🟪🟪🟪🟪🟪🟪🟪🟪🟪🟪🟩🟩🟩🟩\n\nFollow nostr:npub1pvz2c9z4pau26xdwfya24d0qhn6ne8zp9vwjuyxw629wkj9vh5lsrrsd4h and join the hunt at: ðŸ¹\nhttps://plebs-vs-zombies.vercel.app","created_at":1759413067,"id":"1e2ea029245d1e2bd82861dff2d6f955ed3ad36caa884a84a7a47ea5e71d4c05","kind":1,"pubkey":"0b04ac14550f78ad19ae493aaab5e0bcf53c9c412b1d2e10ced28aeb48acbd3f","sig":"fd42cb61483b442ef68760aa0294b2331a2de0c9c7c3605b103b282b11ab72add344a8d8d1433ebcede44cf82c899bc470c923c5a0bacad1392e4decdedea305","tags":[["client","Plebs vs. Zombies","31990:acd7818ead75a59d18a96ed87c8c0db56c98785c7df34eaeb9ab11fc7add70e7:1736530923","wss://relay.damus.io"],["t","PlebsVsZombies"]]}] +[09:52:12.463] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"[trip] https://laantungir.github.io/img_repo/64e3e68c4e685837573d3802b424320decf87ef564ebba6b416afb8ed76851c2.jpg","created_at":1759412246,"id":"0007f8f1cd98b7d282d18ef01779a652fa9040a61cbc227d5665aa2a1fb9922e","kind":1,"pubkey":"1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139","sig":"5eb7a1f71c208b4ed1437e57a5c1b818b447297c3b7c4233b6942e905cc13e67a696dd64ff946dd789a1505e7ba6b3a7d0313673e3b79970242756b98a18db1e","tags":[["nonce","2399","12"]]}] +[09:52:12.463] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"c00aef1170724fd6282acce56d9558de77d3a8d3f9462693bb65c0140873ad5a","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759413107,"kind":1,"tags":[],"content":"New OP_RETURN \n\u0013\nhttps://mempool.space/tx/7310122de869993fb4ec4bea76d56580fdeddf73b0dc79448f14c5c031db75d7","sig":"796e6ea911abd6c0651588469ae60330a7227c10de4cd7d220f8c3c8434a2650a5d6af7c246d71baef190454bc81c69b0d09874cac4071b7037e9015464de3ae"}] +[09:52:12.463] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Searching For Alternative Options\n\nhttps://www.zerohedge.com/political/searching-alternative-options\n\n#Zap to support, DM to suggest new feeds.","created_at":1759413056,"id":"34c4a0c3cca91814109de20816a4099b2bd6faa878d12ff9a85de1aebfa0286b","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"f7c8e35e2777e869a01f16caeb9a0b1c0c3e9369a34c1318102eb79ca05d924cd25c5a9d786bcc32feb6f5645e66fb6be0515927f46d28790e2074ae59aa25b3","tags":[]}] +[09:52:12.463] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"I want to fix my brain. That is all I want.","created_at":1759412172,"id":"f7d2c264e856b4e89986315891f7083b99cd1f267926c3b01673247ce923ccfa","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"27608c8b63a03de771944cc08f15cd8502184cf4f029499a69634e726b502dbb886291b57dcb4e9b92522899b150e483f5539d083d5f0e1dc7985ca7fd54aca1","tags":[["alt","A short note: I want to fix my brain. That is all I want."]]}] +[09:52:12.463] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"91d1d51e263d3c2527e8be1ef930addecbae6dc3ebe5691df41b9b1dec238457","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759413087,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/941056639ba32708d30373c168a7060abd07c9f420ef408623b0cc84c3916486","sig":"264a134d83604bf1c4ff5639aaea2236986238fe6f31f7ca99e349711e28ac9384fd3c36edb3b262ab5b4700db1bf8fa071bc6318d9de823f18a95b10ccf478f"}] +[09:52:12.463] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"I keep seeing people post screenshots of their YouTube, TikTok, or X accounts getting banned or restricted…\n\nWell what the hell did you expect? Why are you surprised? For the love of God just get off those platforms and stop trying to get sympathy and attention from Nostr. ","created_at":1759413055,"id":"9e59dd77052a21233e058697104a0ed5bdf8e86767c8edf1ee21b819a123573e","kind":1,"pubkey":"3512ce58154b2e649808f41111eb2f5c40a16872bdd746430f1fafb668f4cd4b","sig":"eea2e6f64c044172bee1ba6541eb7483aee4723fd6b65ee0329fade1f3ca595b88455f2ed2a1bb1b0d91a6da698faaea5f6b53dd4aa3b0bde4edfe0e981aa2f3","tags":[]}] +[09:52:12.463] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"Barro vermelho","created_at":1759412084,"id":"77078b50498a314f35255777b2255b5e54e99dafbf21e0d7ad9ba2a08e915721","kind":1,"pubkey":"024d53fa7891aa4ac2f0067a1e2fbe872e8a8e659c2525a56bedfc0700f358e9","sig":"e090a853a0dae56dc2bb03d769fafec94b68d4f28517030c5bf5dfd0d902a24f9011796ce3f7789101dd7dd1d1139b614dd5c7c7ca4b6d776bbd7fcc15fc164c","tags":[["g","7nyzn8xv"],["n","anon8312"]]}] +[09:52:12.463] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"00ff16f17a14862043f8c0d118b00699eb0834ca6f366cd456f1a6e995f0c3b9","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759413081,"kind":1,"tags":[],"content":"New OP_RETURN \nBRC20PROG\nhttps://mempool.space/tx/79d0899cbf1b24317c11df4ff206f7b94ca165ce2efb86dfbe244bf28fd6e2ff","sig":"dfc9809632044969d6a8b9117c9fb2a0d469221bf593c8f38902ff163d0b5efc8aecab7d25348dbe97de9214c7b28927659c3109b6104f63664bf1ed3ff7cf9c"}] +[09:52:12.463] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"?\n美国法国英国都ç»åŽ†è¿‡ä¸åŒç¨‹åº¦çš„æš´åŠ›é©å‘½ï¼Œä»€ä¹ˆå«æš´åŠ›é©å‘½å¤§å¤šæ•°æ˜¯é©¬å…‹æ€ä¸»ä¹‰è€…?\n","created_at":1759413050,"id":"454ccfa0ad53d251fa6bfa98d23052f93154eabc93b687df711861d7258a6f46","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"137d9aa2108872417d6d8f0e635b0f2d4b9a586754b43e9a206d58d03978148b3096159acab7d4ef4d93711cfd75c24d593672b5408615a5f372d6e13fec178c","tags":[["e","006690e1730ee5c3b664c05352fa1241b9273ef5711581c17946c7a19731c6ef","","root"],["e","864e94979a803a5fb45f74b2a753ee7871931bc84caff3f84c6490ec3147b243"],["e","a0f0fee32928a0a7608ec57d0220dbd355da326477d552545ee9669b37115897","","reply"],["p","8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba"],["p","1b7333536d38041c31ca56c6ddef4498f00fb5a6d66210bac025ecee7e6e85b4"]]}] +[09:52:12.464] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"My hound has similar issues. It's a Labrador/Retriever thing.","created_at":1759412064,"id":"1f6fbfc77933bb70b8c41ef19b97e8c75decb20e14789d04e4f5951dc0ccc6cc","kind":1,"pubkey":"dd844857fcfbdc12631dcd96efdf3db259df466531f9bbca2fda6fa5a5b13f8a","sig":"9d72faf2fc88751080e608bf826a8409fb6402d0da46ef73fa79a4b7b1052b498a7a8bd0bf13e1ba20f7a7bd1023936bb9c5b79b3290bd6a1631a89fdf4841a9","tags":[["alt","A short note: My hound has similar issues. It's a Labrador/Retri..."],["e","ce5c6af1e88dbf8cf9d6eff8fafa0831f20c01989b39abe77902c7f6b716826b","wss://relay.damus.io/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"]]}] +[09:52:12.464] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"43293270a6a591983d2433ab4d5f2c5824fe24486a48212d0f0d31f8be866b3c","pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","created_at":1759413074,"kind":1,"tags":[["alt","A short note: Fascists gonna fascist."],["e","341329b226a7b85affc5aaf3abf23263978bffa8c29a3ebab987a0ed9f74f8aa","wss://relay.nostr.band/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]],"content":"Fascists gonna fascist.","sig":"9d82ea9e3bfb7946e390cbf266131eedddd1e6ef154eacc20537056ff4354de729a7740d4b34c7823554763095593a002f6182b887d1228747cb65b2b4666bd1"}] +[09:52:12.464] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Black code \nhttps://images2.imgbox.com/bb/bd/AvRuqV78_o.jpg \nDress Code #Black ","created_at":1759413046,"id":"c4461eec04d62d39fd9ceebed58e3cccb30d844df2fd783ce9e5f86b46784316","kind":1,"pubkey":"000001c66890ad49235a61ae56e38fe6a40bed03a6af3bf213e13ccf208d406a","sig":"27c21e094cbecab9f5213ca436496afa6b29c0ed3be0d3bd51c7b64ef9978a06a109c645b5ada588b7051a59e2f741d83910b7d6f254504050eafaf4a81f3c2f","tags":[]}] +[09:52:12.464] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759413130",{"content":"GM 🫂☕","created_at":1759412041,"id":"be0f403c4c7ecf5ecfb8b9ba4efd4a5d4df8c93be6805e356f6725ef68dd8f8f","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"fa80446e80033fcd50fac5e6ba75b632cfb11e8d9f108c66f51373812271f39a188528b441fea4c6a8aad216b292821f24f676150eb455abebdcdd85afc6d59b","tags":[["alt","A short note: GM 🫂☕"],["e","841b95a412638c6eaca3ac5a382b7c25992fa640c242a4f977e60288fe192e22","wss://relay.primal.net/","root","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.nostr.band/"]]}] +[09:52:12.464] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"339c5d37465e82ff27c52c67ebcc05659d3fdc933451d36f2d2f7420d9c3bc8f","pubkey":"7d4a4e87f28e0e3581d4aa923494dfb5bb428abdac20db79560e2bdec853bba8","created_at":1759413063,"kind":1,"tags":[],"content":"New OP_RETURN \n=:e:0x40A08a88cf0268f484279DB26d7CBf43C32846C8:73273:-_/t1:0/70\nhttps://mempool.space/tx/c7c631c887d69047f300fad86444db2ea36ef753078ea23c3b736394bbfd7a8b","sig":"c3cbf2ca6b9ccea2d5e5cbfaf42f7d6101c2cdab24daffcb1fdbcfb7021712e2c9540a52a4e9abdb0d89b3186dbeb9f420566bacd9a30befda7d42805c6a2acb"}] +[09:52:12.464] RECV nostr.mom:443: ["EOSE","pool_1_1759413130"] +[09:52:12.464] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759413130"] +[09:52:12.464] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"3c6019669955c1aa61455f2e6961122d0cca267181bd981dc1c16047b6847abd","pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","created_at":1759413063,"kind":1,"tags":[],"content":"Bitcoin’s transparency surpasses banks. #btcglobal | BTC: $119,752 | Educational Post","sig":"74611082f29d15abb227abc7ef3232f4a436878298eb9a4d66a37ae1adc07f2c6dc22f5afe4e536d365763030d2fdcb27b56dda76d4566d55113fc3c56f90ee0"}] +[09:52:12.530] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"88cfe6ee499bcbac13ccac0bc9d0abd1069dfe4309021a12ffb7ef0076058757","pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","created_at":1759413060,"kind":1,"tags":[],"content":"🟠 BTC: $119,683\nâ›ï¸ Hashrate: 1057256.3 EH/s\n📦 Mempool size: 31.64 MB\n💸 Fees (sat/vB): low 1, med 1, high 1\n📊 Fear & Greed Index: 64 (Greed)\n#bitcoin #stats","sig":"bd47aa8fb4f87360d0c9db320c62c8e1b2dbeefbeb13214d24330f0d7b8da06cbac2d4eb244973ca7be50a3fd58e2b12763e8107f871e96288771e2a99d9c598"}] +[09:52:12.597] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"9e59dd77052a21233e058697104a0ed5bdf8e86767c8edf1ee21b819a123573e","pubkey":"3512ce58154b2e649808f41111eb2f5c40a16872bdd746430f1fafb668f4cd4b","created_at":1759413055,"kind":1,"tags":[],"content":"I keep seeing people post screenshots of their YouTube, TikTok, or X accounts getting banned or restricted…\n\nWell what the hell did you expect? Why are you surprised? For the love of God just get off those platforms and stop trying to get sympathy and attention from Nostr. ","sig":"eea2e6f64c044172bee1ba6541eb7483aee4723fd6b65ee0329fade1f3ca595b88455f2ed2a1bb1b0d91a6da698faaea5f6b53dd4aa3b0bde4edfe0e981aa2f3"}] +[09:52:12.663] RECV nostr-pub.wellorder.net:443: ["EOSE","pool_1_1759413130"] +[09:52:16.285] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Did he restart lntxbot or is this an out of date article? Last I knew he shut it down, like a few years ago. ","created_at":1759413133,"id":"5b2c65c104353620cd63a14b305f9dca0993cb754f8629726d4929cfbf72dd09","kind":1,"pubkey":"f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","sig":"37ddba688eb048cb9d060aad9e650c1534cde9232a35b911920e0a4ccac0b5928247d896f9908b1d3ddf94ef2b168bc22b93e7eee0f3d5cbebc3e8d0b6b3266e","tags":[["e","0508efbc126daced90fd7acd71291b2513fc7bd00eaa58485e61989748e69bd6","","root"],["a","30023:2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331:https://bitcoinsaigon.org/interview-with-lntxbot-creator-fiatjaf/-1759412933","","root"],["p","2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331"]]}] +[09:52:16.462] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Yes, I have dev account that matches my GitHub account nostr:npub1l5sga6xg72phsz5422ykujprejwud075ggrr3z2hwyrfgr7eylqstegx9z and lots of test and automation npubs.","created_at":1759413131,"id":"8591cc6c3b6dbb6bc6f57c84d2e625ff234de4284402168f2cccc78c544d85e0","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"5043b7d4814ee2ec9a16125ac4fa8731d1b4bae18ca18ff4116ff5b18854026203c312d38a090ef4ca4094fc3ce192a6047aac536a1850d3f8fcccdc94f6da73","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","cb3a3a404e027be3e786900ff0a7bb2df36fc3bb6c48944b01140ca8bc25488d","wss://aggr.nostr.land/","reply","690a14b1a8c90dfb180ab2ad1772a1b157dfb1dd48a8d005dcdd3b853c489c70"],["p","fd208ee8c8f283780a9552896e4823cc9dc6bfd442063889577106940fd927c1"],["p","690a14b1a8c90dfb180ab2ad1772a1b157dfb1dd48a8d005dcdd3b853c489c70"]]}] +[09:52:21.205] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"5b2c65c104353620cd63a14b305f9dca0993cb754f8629726d4929cfbf72dd09","pubkey":"f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","created_at":1759413133,"kind":1,"tags":[["e","0508efbc126daced90fd7acd71291b2513fc7bd00eaa58485e61989748e69bd6","","root"],["a","30023:2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331:https://bitcoinsaigon.org/interview-with-lntxbot-creator-fiatjaf/-1759412933","","root"],["p","2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331"]],"content":"Did he restart lntxbot or is this an out of date article? Last I knew he shut it down, like a few years ago. ","sig":"37ddba688eb048cb9d060aad9e650c1534cde9232a35b911920e0a4ccac0b5928247d896f9908b1d3ddf94ef2b168bc22b93e7eee0f3d5cbebc3e8d0b6b3266e"}] +[09:52:29.545] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"GM D3! Same here","created_at":1759413142,"id":"cd7595a344f934f6ea2485085ea91e6631c54e3dcaef68db43da6d02b03211da","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"faf768116e49e34d0825c306dc6a021013d47ae142e25d61fab3659bbe68e8c117822ba5d97b554176e04dc6aaaa4859f1f220a1bb8e89fd4dbc50f612653bc7","tags":[["e","3526668776c3fcb3a3028f8cf8ab76c2f421a95f38df21e984c7fe506a71e44f","wss://relay.damus.io","root"],["e","dae34d6b96457e7646cc383c57cd6340296aeb615e3fb8089792392babbe679a","","reply"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"]]}] +[09:52:33.681] RECV nostr.mom:443: ["EVENT","pool_1_1759413130",{"content":"Why not both? We assume, crypto is strong but just in case, we can additionally obscure things.","created_at":1759413153,"id":"0a0f7d37103398c3160142852c199bc00894fd37b811b4c04b5ab8272293655c","kind":1,"pubkey":"46fcbe3065eaf1ae7811465924e48923363ff3f526bd6f73d7c184b16bd8ce4d","sig":"86d65619238f10bc93d1920bef8237d3718a49805b07de61444a6a5181ead6306d02783ec58299fbb6e88e1e5f7883e629d0161a1f5f3acc22b0da638d883790","tags":[["e","c306a32112831c715aad411b49fbd443503ae63f5af3628698b0cde7cc5e0641","wss://nostr.wine/","root","675b84fe75e216ab947c7438ee519ca7775376ddf05dadfba6278bd012e1d728"],["e","c306a32112831c715aad411b49fbd443503ae63f5af3628698b0cde7cc5e0641","wss://nostr.wine/","reply","675b84fe75e216ab947c7438ee519ca7775376ddf05dadfba6278bd012e1d728"],["p","675b84fe75e216ab947c7438ee519ca7775376ddf05dadfba6278bd012e1d728"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[09:52:34.143] RECV nostr-pub.wellorder.net:443: ["EVENT","pool_1_1759413130",{"id":"0a0f7d37103398c3160142852c199bc00894fd37b811b4c04b5ab8272293655c","pubkey":"46fcbe3065eaf1ae7811465924e48923363ff3f526bd6f73d7c184b16bd8ce4d","created_at":1759413153,"kind":1,"tags":[["e","c306a32112831c715aad411b49fbd443503ae63f5af3628698b0cde7cc5e0641","wss://nostr.wine/","root","675b84fe75e216ab947c7438ee519ca7775376ddf05dadfba6278bd012e1d728"],["e","c306a32112831c715aad411b49fbd443503ae63f5af3628698b0cde7cc5e0641","wss://nostr.wine/","reply","675b84fe75e216ab947c7438ee519ca7775376ddf05dadfba6278bd012e1d728"],["p","675b84fe75e216ab947c7438ee519ca7775376ddf05dadfba6278bd012e1d728"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]],"content":"Why not both? We assume, crypto is strong but just in case, we can additionally obscure things.","sig":"86d65619238f10bc93d1920bef8237d3718a49805b07de61444a6a5181ead6306d02783ec58299fbb6e88e1e5f7883e629d0161a1f5f3acc22b0da638d883790"}] +[09:52:40.597] SEND nostr.mom:443: ["CLOSE", "pool_1_1759413130"] +[09:52:40.597] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759413130"] +[09:52:40.597] SEND nostr-pub.wellorder.net:443: ["CLOSE", "pool_1_1759413130"] + +=== NOSTR WebSocket Debug Log Started === +[09:56:23.413] SEND relay.laantungir.net:443: ["REQ", "sync_1_1759413383", { + "kinds": [1], + "limit": 4 + }] +[09:56:24.023] SEND nostr.mom:443: ["REQ", "sync_2_1759413383", { + "kinds": [1], + "limit": 4 + }] +[09:56:24.023] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759413383",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,382\nBlock Hash: 00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480\nTimestamp: 2025-10-02T13:49:00.000Z\nTransactions: 4,548\nBlock Size: 1.49 MB\nBlock Weight: 3,993,207 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917382","created_at":1759412963,"id":"3cfdc1615b75989be25b136686a03bbe0325099b5bcacf401c41cb0bd401f1b3","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"688c50644ffd5a3de49dea003e75515169ab417f70cc89c02644665721be6aa55063100f12e637e257a43970872f060b05398e42c86f60deab1ecbfb1d651ed1","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917382"],["published_at","1759412940"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480"],["new_block","true"],["block_height","917382"],["block_hash","00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480"],["block_time","1759412940"],["tx_count","4548"],["block_size","1560714"],["block_weight","3993207"],["difficulty","150839487445890.5"],["previous_block","000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["mempool_tx_count","127"],["mempool_size","33941"],["memory_usage_pct","0.1"]]}] +[09:56:24.084] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759413383",{"content":"Foto retro 👌","created_at":1759412703,"id":"0c327ff88b7342d428914dac70febd7b4dce30bd957ee8a00b1a6ed93a64439b","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"9e9d35f3c0f0635fa925243e72f76907b61848310072f3b905ecf8e8ccd0fbe0d9cac092cbb45b90a75c60e410086316f5f3fc5a78566f7d18e752203c0b52f6","tags":[["alt","A short note: Foto retro 👌"],["e","0007f8f1cd98b7d282d18ef01779a652fa9040a61cbc227d5665aa2a1fb9922e","wss://nos.lol/","root","1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139"],["p","1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139","wss://premium.primal.net/"]]}] +[09:56:24.144] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759413383",{"content":"Slice and dice the troons","created_at":1759412621,"id":"8cbd0158f654c555381342a2a9801a829c30271c6ff75e4101f978cc4f33920d","kind":1,"pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","sig":"2b66f79050d2ce4d0b629a04f923b81a845b93d3821294428f9513a8f79f6a4257972d57178553d5600c281c416e25e9d733b4cc9daf02d765fd859b40b3a8f6","tags":[["p","4bc7982c4ee4078b2ada5340ae673f18d3b6a664b1f97e8d6799e6074cb5c39d","","mention"],["e","53931f85c9f5a204c127c137c74e6957940270a21cd1548294621432fc2716b9","","root"]]}] +[09:56:24.174] RECV nostr.mom:443: ["EVENT","sync_2_1759413383",{"content":" \n\n\n\nhttps://blossom.primal.net/90fd77c2a67af4fef75fba3065d0c833561fd06807b8e9938c5c2476f7d7db89.jpg","created_at":1759413376,"id":"44493cd16249241b48b89c830a704475f6706646a3d5f1141a0c007102887aae","kind":1,"pubkey":"06f4638e1640e01a8789575e8f2985727ca1e3227aa518dc4291ca39b6704e26","sig":"098f2f9676b75f56c3a435ab202ade90f2432ab4d1abd9260bf088f277e50078f9c6bd1045185936d24d06c3e4f7d888849a7ff93d1fc15af2927222cbf32389","tags":[["imeta","url https://blossom.primal.net/90fd77c2a67af4fef75fba3065d0c833561fd06807b8e9938c5c2476f7d7db89.jpg","m image/jpeg","ox 90fd77c2a67af4fef75fba3065d0c833561fd06807b8e9938c5c2476f7d7db89","dim 736x1104"]]}] +[09:56:24.185] RECV relay.laantungir.net:443: ["EVENT","sync_1_1759413383",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,381\nBlock Hash: 000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b\nTimestamp: 2025-10-02T13:42:02.000Z\nTransactions: 3,042\nBlock Size: 1.50 MB\nBlock Weight: 3,998,052 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917381","created_at":1759412563,"id":"946c2ec0980d1ddcd9ad37aa139eb470c1d77f6a18f43408d41efc23f87b1c5f","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"dff6b5c1fc24eea4342bb4bd39f04c3bc17231e10a578ab706d698239d034e385f69634d19618619833deaf37bcd28c38a91480ddc15bdd2316c941c13e4218c","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917381"],["published_at","1759412522"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["new_block","true"],["block_height","917381"],["block_hash","000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["block_time","1759412522"],["tx_count","3042"],["block_size","1575288"],["block_weight","3998052"],["difficulty","150839487445890.5"],["previous_block","00000000000000000000992ff5905a8dd09798866a114454dbf494060cd97cf4"],["mempool_tx_count","677"],["mempool_size","147518"],["memory_usage_pct","0.3"]]}] +[09:56:24.185] RECV nostr.mom:443: ["EVENT","sync_2_1759413383",{"content":"👀🤣","created_at":1759413372,"id":"9ebba7e535afecdbb708274f312512ca3bdb5900a2a6ce3c33c336507b564b07","kind":1,"pubkey":"f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9","sig":"331c12225378db801b7307f63ef1c4174adaa61402e1b9b37d45fe2ff2ea1ce6617aea6a609e3e55e646856bf58202656fdd142a3b3bba9ce1d1d56314ba1620","tags":[["e","87fae4c7c4a20952f50229b7f43fb562301d6db64bc4677ffd322cb5d457c9e0","","root"],["e","fe3ae52e88de2043360366817ca786f85591d23b2beb9665850db7381cf48a69","","reply"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"]]}] +[09:56:24.195] RECV relay.laantungir.net:443: ["EOSE","sync_1_1759413383"] +[09:56:24.195] SEND relay.laantungir.net:443: ["CLOSE", "sync_1_1759413383"] +[09:56:24.196] RECV nostr.mom:443: ["EVENT","sync_2_1759413383",{"content":"ã“れã§ãƒ€ãƒ¡ã ã£ãŸã‚‰æœ¬ç‰©ã®USB使ã£ãŸã‚¯ãƒªãƒ¼ãƒ³ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚„らんã¨ã„ã‹ã‚“ãª","created_at":1759413358,"id":"f4d1acbddae0a9ed799d1719c8d86512a21c0025f1d48d11b4ee985445b34d5b","kind":1,"pubkey":"23395bce1a18fe5ff5bde153fcd47ecd1cd66e686684dfd2cfcbd9fafd305cb3","sig":"95e81c6af78716a88253ca2675604d67bc06022672fcbecb8b4bd3341916d870e6c5b1c8255965b5e54c9b21657bf5f8d1108c4df34084ea920a42949f0830a0","tags":[]}] +[09:56:24.206] RECV nostr.mom:443: ["EVENT","sync_2_1759413383",{"content":"💵 *Bitcoin Price Update:*\nUSD: $119784\nEUR: €102204\n🔄 Change: $911.00 (0.77%)\nâš¡ *Network Fees:*\nLow: 2 sat/vbyte\nMedium: 1 sat/vbyte\nHigh: 1 sat/vbyte\n\n#bitcoin #crypto","created_at":1759413357,"id":"d3b7d09b4a15f7a1f26d1f59c398b74ec3846268f5dba80ea98497b93c8b6f99","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"abefe68e688f656d2c673704921a641334bea959e9cd6a512e1e909ef1bfdb9fcfffc3657a58f025eb75eca9e7662011daca2a8b155c758fe7d63a97484f9377","tags":[]}] +[09:56:24.216] RECV nostr.mom:443: ["EOSE","sync_2_1759413383"] +[09:56:24.216] SEND nostr.mom:443: ["CLOSE", "sync_2_1759413383"] + +=== NOSTR WebSocket Debug Log Started === +[10:11:30.604] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759414290", { + "kinds": [1], + "limit": 10 + }] +[10:11:30.680] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"Awesome! Thank you 🫶","created_at":1759413967,"id":"6d069551e21c1a085b9f940b9066e402b51776ad6a8627e7f467dc9be5366310","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"09caaa763f38a1d68202dcec8eb87cc715853e01745987b8ba266b6ccaca9fb4e715730ac6c1016ba5b4fc3c388f06f88a3cfd4903ae374136cf5488d6facb78","tags":[["alt","A short note: Awesome! Thank you 🫶"],["e","baacf637551a059df7abe0a04623679e47c8754425fadc4d51feb40bcbb1cf78","wss://nostr.oxtr.dev/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","0d136037a36835ef56764928ca5d9f3bbdf0fa7ad24c27b2c5395add8b6bf5b1","wss://atlas.nostr.land/","","06639a386c9c1014217622ccbcf40908c4f1a0c33e23f8d6d68f4abf655f8f71"],["e","1d20ce109a9be20494df3dab40fc1c991b0dcbc9ef72167b715f9c2f4c50cd0d","wss://relay.damus.io/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f40901c9f844c9e92c3f951ed58b729a2a5819cf82f590403d186587a12b7fa0","wss://relay.nostr.band/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://filter.nostr.wine/"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","06639a386c9c1014217622ccbcf40908c4f1a0c33e23f8d6d68f4abf655f8f71","wss://nostr.oxtr.dev/"],["p","6b0a60cff3eca5a2b2505ccb3f7133d8422045cbef40f3d2c6189fb0b952e7d4","wss://filter.nostr.wine/"]]}] +[10:11:30.690] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"Soon (tm) ","created_at":1759413942,"id":"8b1e1451dcaab716cee64dcd30d9f402abc1b3f841bccfdb0e577e2e1e44defd","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"1c739e1fdb6b617b8248151a7a7ff8bb23e41279627254cb2c507ff8de9a66cf26640977d3eb9d3d454fed7d80a80b1b4e805ec21ef767853d3d6683bc22897e","tags":[["alt","A short note: Soon (tm) "],["e","baacf637551a059df7abe0a04623679e47c8754425fadc4d51feb40bcbb1cf78","wss://nostr.oxtr.dev/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","513327de5130413ae8dc5742cd80242660d0fa78cc62e5eb9c8539c6230fda8f","wss://atlas.nostr.land/","","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","75b47321eaeb384dfcf3f8247b705898a46972341c65cff048ea9d3a5e57e0c1","wss://relay.damus.io/","reply","06639a386c9c1014217622ccbcf40908c4f1a0c33e23f8d6d68f4abf655f8f71"],["p","f40901c9f844c9e92c3f951ed58b729a2a5819cf82f590403d186587a12b7fa0","wss://relay.nostr.band/"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","06639a386c9c1014217622ccbcf40908c4f1a0c33e23f8d6d68f4abf655f8f71","wss://nostr.oxtr.dev/"]]}] +[10:11:30.700] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,382\nBlock Hash: 00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480\nTimestamp: 2025-10-02T13:49:00.000Z\nTransactions: 4,548\nBlock Size: 1.49 MB\nBlock Weight: 3,993,207 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917382","created_at":1759412963,"id":"3cfdc1615b75989be25b136686a03bbe0325099b5bcacf401c41cb0bd401f1b3","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"688c50644ffd5a3de49dea003e75515169ab417f70cc89c02644665721be6aa55063100f12e637e257a43970872f060b05398e42c86f60deab1ecbfb1d651ed1","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917382"],["published_at","1759412940"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480"],["new_block","true"],["block_height","917382"],["block_hash","00000000000000000001336c46dc31f79a0be35429b300eaa36a89fa8da11480"],["block_time","1759412940"],["tx_count","4548"],["block_size","1560714"],["block_weight","3993207"],["difficulty","150839487445890.5"],["previous_block","000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["mempool_tx_count","127"],["mempool_size","33941"],["memory_usage_pct","0.1"]]}] +[10:11:30.711] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"Foto retro 👌","created_at":1759412703,"id":"0c327ff88b7342d428914dac70febd7b4dce30bd957ee8a00b1a6ed93a64439b","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"9e9d35f3c0f0635fa925243e72f76907b61848310072f3b905ecf8e8ccd0fbe0d9cac092cbb45b90a75c60e410086316f5f3fc5a78566f7d18e752203c0b52f6","tags":[["alt","A short note: Foto retro 👌"],["e","0007f8f1cd98b7d282d18ef01779a652fa9040a61cbc227d5665aa2a1fb9922e","wss://nos.lol/","root","1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139"],["p","1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139","wss://premium.primal.net/"]]}] +[10:11:30.721] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"Slice and dice the troons","created_at":1759412621,"id":"8cbd0158f654c555381342a2a9801a829c30271c6ff75e4101f978cc4f33920d","kind":1,"pubkey":"6607bbca86aff83d79135683bdeba604f2a4b3fe2e3a64dfbe1055c6fe322688","sig":"2b66f79050d2ce4d0b629a04f923b81a845b93d3821294428f9513a8f79f6a4257972d57178553d5600c281c416e25e9d733b4cc9daf02d765fd859b40b3a8f6","tags":[["p","4bc7982c4ee4078b2ada5340ae673f18d3b6a664b1f97e8d6799e6074cb5c39d","","mention"],["e","53931f85c9f5a204c127c137c74e6957940270a21cd1548294621432fc2716b9","","root"]]}] +[10:11:30.732] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,381\nBlock Hash: 000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b\nTimestamp: 2025-10-02T13:42:02.000Z\nTransactions: 3,042\nBlock Size: 1.50 MB\nBlock Weight: 3,998,052 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917381","created_at":1759412563,"id":"946c2ec0980d1ddcd9ad37aa139eb470c1d77f6a18f43408d41efc23f87b1c5f","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"dff6b5c1fc24eea4342bb4bd39f04c3bc17231e10a578ab706d698239d034e385f69634d19618619833deaf37bcd28c38a91480ddc15bdd2316c941c13e4218c","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917381"],["published_at","1759412522"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["new_block","true"],["block_height","917381"],["block_hash","000000000000000000003179a6284057416ddc975714ad20a74d25bcd272c27b"],["block_time","1759412522"],["tx_count","3042"],["block_size","1575288"],["block_weight","3998052"],["difficulty","150839487445890.5"],["previous_block","00000000000000000000992ff5905a8dd09798866a114454dbf494060cd97cf4"],["mempool_tx_count","677"],["mempool_size","147518"],["memory_usage_pct","0.3"]]}] +[10:11:30.742] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"10x higher risk can be .001 that gets to .01\n\nSo don't trust science REPORTING maybe??","created_at":1759412343,"id":"01af5d8cc024dd0d57bbce15719919a35884a24f02639aade5158bae66cc9ac6","kind":1,"pubkey":"6c78d3fbb485c7e5d70ad3bc4987fb740a65f1aa97df9915b16e58d7005ab080","sig":"6ba0264798117be54106861292079205d039d3b0307ee66b5ce50cc0841fa85bc11520fe2aedfa267871da371936e00fee756bc1bb762843cef1f317eb09e125","tags":[["alt","A short note: 10x higher risk can be .001 that gets to .01\n\nSo d..."],["e","6b6022ae6d8ba79abda564e1fbdb959b7b3db039cb43a49f6efb1bb36e2ebb1c","wss://relay.nostr.band/","root","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","wss://relay.nostrplebs.com/"]]}] +[10:11:30.752] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"[trip] https://laantungir.github.io/img_repo/64e3e68c4e685837573d3802b424320decf87ef564ebba6b416afb8ed76851c2.jpg","created_at":1759412246,"id":"0007f8f1cd98b7d282d18ef01779a652fa9040a61cbc227d5665aa2a1fb9922e","kind":1,"pubkey":"1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139","sig":"5eb7a1f71c208b4ed1437e57a5c1b818b447297c3b7c4233b6942e905cc13e67a696dd64ff946dd789a1505e7ba6b3a7d0313673e3b79970242756b98a18db1e","tags":[["nonce","2399","12"]]}] +[10:11:30.763] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"I want to fix my brain. That is all I want.","created_at":1759412172,"id":"f7d2c264e856b4e89986315891f7083b99cd1f267926c3b01673247ce923ccfa","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"27608c8b63a03de771944cc08f15cd8502184cf4f029499a69634e726b502dbb886291b57dcb4e9b92522899b150e483f5539d083d5f0e1dc7985ca7fd54aca1","tags":[["alt","A short note: I want to fix my brain. That is all I want."]]}] +[10:11:30.773] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414290",{"content":"Barro vermelho","created_at":1759412084,"id":"77078b50498a314f35255777b2255b5e54e99dafbf21e0d7ad9ba2a08e915721","kind":1,"pubkey":"024d53fa7891aa4ac2f0067a1e2fbe872e8a8e659c2525a56bedfc0700f358e9","sig":"e090a853a0dae56dc2bb03d769fafec94b68d4f28517030c5bf5dfd0d902a24f9011796ce3f7789101dd7dd1d1139b614dd5c7c7ca4b6d776bbd7fcc15fc164c","tags":[["g","7nyzn8xv"],["n","anon8312"]]}] +[10:11:30.784] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759414290"] +[10:11:31.356] SEND nostr.mom:443: ["REQ", "pool_1_1759414290", { + "kinds": [1], + "limit": 10 + }] +[10:11:31.734] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"残ã£ã¦ã„ãŸãƒ›ãƒ¯ã‚¤ãƒˆã‚½ãƒ¼ã‚¹ã«\n美味ã—ãã†ã§è²·ã£ã¦ãŸãƒãƒ†ãƒˆ\n美味ã—ã„ãƒãƒ†ãƒˆã‚°ãƒ©ã‚¿ãƒ³ã ã£ãŸãƒ¼","created_at":1759414288,"id":"1459185ed081a4daa1f642b738a5d20664ab94b12037535ea87ed0fd41c72aba","kind":1,"pubkey":"79c9f2c0a08815821909df02f3bbc60ad65a9fe4c5192c6506bd5a0de20e6ba6","sig":"d2cf1b089c67173e8887be64c82ea3fd5816aacd55d59fe4ed3a1f5a1a65a239f4ea39728018e3329444efe742938c8d712322ee8ced2cc728798c48025cde03","tags":[]}] +[10:11:31.794] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Going to be a bumpy ride… 🚀\nhttps://blossom.primal.net/9586962c62dd6313a9f6b52bd449a2ab8e6e561daf98dd9b70360a2c2eed3223.jpg","created_at":1759414285,"id":"2e0a3869c2c526f7bd14adbad7db9a5f3e0166f1272c85bcc53cb7f9a15c7cf7","kind":1,"pubkey":"f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","sig":"c559ad50360c169582945fd2a9b0cf3aa959e156250fa096cc9b2a9cafe8a6fccd08a80fa1fd6e530e37ca065c260c8c31c9a98826d3dcb5c7aacd92fae1ed71","tags":[]}] +[10:11:31.855] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"ãŠå‰ã®åˆæ‹ã­ã‡ãƒ¼ã‹ã‚‰ï¼","created_at":1759414276,"id":"95ed4d25e63370e453fd4d9948adfffdf5be873700f442e40fc296d1a09c79b0","kind":1,"pubkey":"8d39a0f9a133b626f5705324c39a3530ca01fae177ae3bb85d82aefe6c725f33","sig":"ed010f264fa81517458947801f3964d78a6ba199b7525cc604209b58952a2dd0430c4e216f9714413a89c0fe4c902d4438f4986bf51badf53960868844b1ec17","tags":[]}] +[10:11:31.915] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"In the span where I gained 50 follows, other people gained 5000 or 50000 follows. You're saying that only 1 out of 1k or 10k newbies are interested in what I post?\n\nUnlikely.","created_at":1759414264,"id":"19f3feaa44f38c7d99f3eb230f43ac196876d187d545a8fbba539c84962bc7e5","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"cf3529ee41969fc154154b4e37f298da367a34c077457c39657a9171853ef067cffaa7f999cf53468af021e57ec55714e9fae8a9a66731646e01fdae4f31238b","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","0f277324aa0a9cf6bd406b0cac307a71ecdf14295642ef0e1805b2115997f05b","wss://orly-relay.imwald.eu/","reply","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"]]}] +[10:11:31.976] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Already cleaned them 👀","created_at":1759414250,"id":"e557032f0e6ffeb013a69206d6b4e05a758dca7949ea88aed94eb627a41ed5eb","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"5095221175b0d381efb1fbf0e7adcd0c79f0a28ddf767bcfd70ba2e8ab9946a23e990566b39407f5d9fc84020dc173b9be04fbd4aee047fd78ecaa28b6c190b2","tags":[["e","bf97d5078b671f130bd764786a719fbfb29249f8146f65b19fbd6438d6c3b966","wss://nos.lol/","root"],["e","e45cb0c522df563a7b924eaedb3aaa0ee8012772a724f358194727f493353041","","reply"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[10:11:32.037] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"ã¨ã‚Šã‘らã¡ã‚‡ã“","created_at":1759414247,"id":"d786c841c86a3e6b9c0a55d823d7995f3b14e42710397acc6d995e6ada330a0e","kind":1,"pubkey":"8d39a0f9a133b626f5705324c39a3530ca01fae177ae3bb85d82aefe6c725f33","sig":"77e6e27253710581ddfe02b193ed3d737e80a948c43e267f7c96533e2fc17f9e6b550d2c74260780af4c5d38cfc28f6fcc64774cae908d2d6b4d03952863b4fd","tags":[]}] +[10:11:32.097] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":" \nhttps://images2.imgbox.com/65/d8/qDPKBMX0_o.jpg \nBlack #bikinis are a summer essential for every queen 👙 ","created_at":1759414246,"id":"9eb718976fd5b39d4a4c001a976fae6688d7ba71e160a1691b240050176eda96","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"d1d71c007165f0e6d689db6179931348218e1e6eb5650de88738d09504ede02021f94c6e995d595b1196301e246e39bb80ef8d5b4fed58fc740a1c4d5f1ccf7a","tags":[]}] +[10:11:32.158] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"æˆ‘æ‰€è°“çš„æ”¯æŒæš´åŠ›é©å‘½ä¹Ÿåªæ˜¯è®¤ä¸ºå…±äº§å…šä»–永远ä¸ä¼šæ”¹å˜è€Œå·²ï¼Œå½“然我说的是越å—共产党ðŸ˜","created_at":1759414230,"id":"260a0bba27ff997b2327e6e0af91c5227603d287cb765f3f2724f27d45c4264a","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"a70f348da264836e4f4f8ca3a70399b074e808fc56a7135bd4761d0b6d8f663ea5b6294e7637222507ad5fbaec3fae86ece499dd167013b8e9e98666fa5d9128","tags":[["e","006690e1730ee5c3b664c05352fa1241b9273ef5711581c17946c7a19731c6ef","","root"],["e","fbfd50ad1df8d8d6ab4fbd3ab1b808347797a098ae7ad8d1f4fff9414cb66302"],["e","4a13f000cc8d4b5d221b1031d55874fe8f18c72eb94dda60e6108987fbf3e3e4","","reply"],["p","8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba"],["p","1b7333536d38041c31ca56c6ddef4498f00fb5a6d66210bac025ecee7e6e85b4"]]}] +[10:11:32.218] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Damus has this share action 👀\n\nhttps://i.nostr.build/fOmdfc8pPWcZDRp3.jpg","created_at":1759414227,"id":"0821163585f1b03373f981488fb3f31a12913bb06a3d920300b1d690965e7e61","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"6062e3d7b717e8221febc5eacf7b5c99ad75482227d0c9858c3331766726440bc1b4b61924aa11d3bd824fd97958f71858f2918517ad36d21815d9c8721534b3","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root"],["e","397533a61e67b83f2f48872d99551bd90ec1b24d9c188a51466790ecf206688f","","reply"],["imeta","url https://i.nostr.build/fOmdfc8pPWcZDRp3.jpg","blurhash eSBzIMoeofWCj]_4a#ofj]bH?vj[WBWVWBo#j[aeWWWBRkj[axWCWC","dim 1170x2391"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["r","https://i.nostr.build/fOmdfc8pPWcZDRp3.jpg"]]}] +[10:11:32.279] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"14ç•ªç›®ã®æ¨™çš„","created_at":1759414222,"id":"b40e1c38f1120ff15b5a752dc9f18a31f459bea265d7ad17c09798841e608b1a","kind":1,"pubkey":"8d39a0f9a133b626f5705324c39a3530ca01fae177ae3bb85d82aefe6c725f33","sig":"7c5b8e206aee76aed77d7ef8eedfb282d3a703e8dda7c573a5ee2692c215f1b597fc0666800891f1a76ca3a2b724436f89f96d4321120aca6488eb72aec3fb51","tags":[]}] +[10:11:32.339] RECV nostr.mom:443: ["EOSE","pool_1_1759414290"] +[10:11:38.907] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"I think just keeping the color line would be sufficient? No need for actual highlight on text. When I see lots of them in a row it just pollutes the feed with bright colors","created_at":1759414277,"id":"eba81caaf18d6ff398805af9cdb1e81b8633bd8fee06c6d94c0feb12be884692","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"6d17aa9277ac4bde1fd954f6ea372287f691bb3c2eb82f01ab6e6a6612f5314237b7cffedfc6ad1b5220388fe565d6a63f4f6511fea23bbd33c47db00ed4a78b","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","","root"],["e","05caf1dc97bf692e30a98d074f26e4357be3e6454bb92a6877a79fdc851d5a08","","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"]]}] +[10:11:42.607] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"The wait is over sir 🫡","created_at":1759414297,"id":"007ddfb3460ebf88b482ebac81e5161c6fa51529659b930e2ddf4f16247674ac","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"efccc8844b800068b7a54c52e269426713afe58bf45fc2b70a80c6d869a0973ed616f01477d47f14f6b49d882948e74384dea69fca3c0b33430ecf909fa8f8c1","tags":[["alt","A short note: The wait is over sir 🫡"],["e","609c000d9e1903d499b34cfa15c99175f82f381909aa6348c1be9aa3e002ca62","wss://relay.damus.io/","root","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"],["e","0af33f97e96b57ae0085db51e27fa2a04b4fbbe2fa2b9b3dc57499c783f3bb99","wss://nostr.wine/","reply","ff2e412319f01788687a63de3248c2e9fac3f2ad15e3d621e2b42275cacb9ecd"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","wss://relay.damus.io/"],["p","ff2e412319f01788687a63de3248c2e9fac3f2ad15e3d621e2b42275cacb9ecd","ws://dbtksyiddypgaplsmbrjfhioxgpykk7gzplas4cz22jdgcuaoyubdrqd.onion/"]]}] +[10:11:57.782] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"I can purchase on start9 website? Or Umbrel?","created_at":1759414310,"id":"2cfe88ab0a5ecff36e19ceea3cb26795de85b7bf4c959244be5efbd949c6daf6","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"bd9987369e2adaeccfcc62550c4539dad0abea9ae57beea8e97c24b8322a2cb50980369d3a073479bbd09b6be8fdfc0f999910e537536a7add1e48eb47fff8d9","tags":[["e","bf97d5078b671f130bd764786a719fbfb29249f8146f65b19fbd6438d6c3b966","wss://nos.lol/","root"],["e","e510cbd9ac496e15a37ece13019fdc8875bd454ff5d260e48f61771eea591f8f","","reply"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[10:12:04.586] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"è¿™å·åˆè¯ˆå°¸äº†","created_at":1759414323,"id":"a53ebd5db67d09c709975129cbb22aa01ef18a2e00886e429eee00643f3101ec","kind":1,"pubkey":"98de3e4c8ec76a9fc5bc9309187b5d13f57fb6f8858a2a35389df975849315e5","sig":"ee21f0676e83f655e4231a3fce2567cc3dc11ac79b9ce0cd7218a4316c3a7d7218cd0c70021f8bbeaab1a38024c676af7a645e78fff661bd749abb1eb5432e67","tags":[["e","45339dc1678eb910bea8eb378e81af61c7825d69da6aa7cee30743896ba1de5a","","root"],["p","fad73cc9109f48d58101e2d0e17291c0b17a200639dd1202dcfd96842cd28f4e"]]}] +[10:12:04.646] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"近日,网å‹å±•示自己公å¸è‡ªæ„¿åŠ ç­è°ƒæŸ¥é—®å·æ‰‹æœºå°ç¨‹åºï¼Œé€‰æ‹©ä¸æ„¿æ„æ— å¿ç­å’ŒåŠ ç­1å°æ—¶çš„é€‰é¡¹æ—¶ï¼Œè¦æ±‚输入部门和工å·ï¼Œé€‰æ‹©åŠ ç­3å°æ—¶åˆ™å¯ä»¥ç›´æŽ¥æäº¤ã€‚\n\nhttps://video.twimg.com/amplify_video/1973334200091549696/vid/avc1/556x788/Y2QBCQSO6bfQpWmQ.mp4","created_at":1759334401,"id":"45339dc1678eb910bea8eb378e81af61c7825d69da6aa7cee30743896ba1de5a","kind":1,"pubkey":"fad73cc9109f48d58101e2d0e17291c0b17a200639dd1202dcfd96842cd28f4e","sig":"4b5e8c60cd740cfd9edc6ed264be5421648e072e563009e774eb48dac006f058f2df92e9c9d785a19518f987e2c611d15ada84859441d3690e4f10a743d06fc3","tags":[["imeta","url https://video.twimg.com/amplify_video/1973334200091549696/vid/avc1/556x788/Y2QBCQSO6bfQpWmQ.mp4","m video/mp4"],["proxy","https://bird.makeup/users/whyyoutouzhele/statuses/1973417625959944528","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[10:12:07.576] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"GM no risk no fun and be alive in Bitcoin or HFSP😎✨🫶\n\nhttps://youtu.be/cHGkvu22lKI?si=s0YvHuoRN37AZXVh","created_at":1759414327,"id":"f30ccb23346de531b856146b18869a2453a16c62ba7bb4414215a7e6b2b586c4","kind":1,"pubkey":"e651f1b6bb8e212d254296a135952cdf42601edccad8b62d92d3c945776e3685","sig":"f0284340440c320a5165c4d1e576a9b53d2bff74f73cbc2b1a1aefccad2c347e7908a1a069f6821f2c46ca887671862ef0a01877b0add0a4e18ef9c0f5e39f8c","tags":[]}] +[10:12:08.851] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Statins not only don’t work at reducing cardiac events, they slash GLP1 levels. Luckily we have a drug for that…","created_at":1759414328,"id":"1efbc0b8092148908d8454896c6f7a331f33afce0ec0b414f1527d467b541fbb","kind":1,"pubkey":"e1fc88f8e378784587c2337f4eb90a46c0c0622c42e77d75ec4a37521f30f622","sig":"896024f4c95588ed2f290e6d9ba53120b58ad7cd2775e73ef6b7bcdb954e7b7451d85df38a7b6b37e301f7a21813faf57635fcf18db19c6c583664deaecb2b34","tags":[]}] +[10:12:13.657] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"🚀 #Bitcoin marca un máximo de 7 semanas en $119,450. El optimismo de octubre y la expectativa de recortes de tasas de la #Fed impulsan al rey de las cripto a su nivel más alto en casi dos meses.\n\nhttps://res.cloudinary.com/db5i3inqr/image/upload/v1755125919/nostr-posts/bitcoin-1.jpg","created_at":1759414328,"id":"725231781d88ced9c74aaecf9fb8bd9963b4ebe0dc7effbe5675844c1beb89c0","kind":1,"pubkey":"ff9f3daff5dcc42bfd719209593f547bd484ddc33f54b032b75b8c785d3be9a5","sig":"73ed12a0dcab27ed629e35c54f97613684010095f2f07ec3fa0a4eaf1c93ca446bd6b992bb6400c405d77fb0fa2a4ac2617fb1c61d360f8c25204a3750fdd87b","tags":[["image","https://res.cloudinary.com/db5i3inqr/image/upload/v1755125919/nostr-posts/bitcoin-1.jpg"]]}] +[10:12:19.013] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"It makes me want to unfollow Gigi and I don’t want to unfollow Gigi 🤣","created_at":1759414331,"id":"7a30bbaacbbbc8ffffba533759732354e307e84c1c52e5e34cfc21fda0b67587","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"cb03db606a6727ea849baf9ef4268e8fbcc3fd6a57fda2b1bdbd08101996da9119934c7cceada3e7a0468e84b3273093517e9a0287e9f9ad185264edad69459d","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","","root"],["e","eba81caaf18d6ff398805af9cdb1e81b8633bd8fee06c6d94c0feb12be884692","","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"]]}] +[10:12:23.708] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"YasssðŸ‘","created_at":1759414343,"id":"31b5397a50180d9cc9a0b65f0afa8ffb6576da1725fc3afad6eb0369cf35732e","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"7566d71c75f6764f8c18a698371c69d22df7d68f0b5f2ff7b62c45c4d19eee5a41a8872bbda1e521469ad9e52e58daffadd5f926a083cd3bf2080f8303d10917","tags":[["e","7730f7d6f27a0cc13659ec83641ddaaab834b7233cc03e5785de696fc5f696ed","wss://bevo.nostr1.com/","root"],["e","9fb79f9587b958e4edc810510c44cfb807799f00f248f76ecd2174cc5b4cc549","","reply"],["p","8a1cd17786cf8230348f935bd1d77aac8cb3e537871b9f3667ca482366d85613"]]}] +[10:12:23.768] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"My kind of weight loss group!","created_at":1759365077,"id":"9fb79f9587b958e4edc810510c44cfb807799f00f248f76ecd2174cc5b4cc549","kind":1,"pubkey":"8a1cd17786cf8230348f935bd1d77aac8cb3e537871b9f3667ca482366d85613","sig":"00fcefc5dfbfc7631fe44830d3b4e366bbbbc6b9a69ed9332e8add3eee340d4288954840ea877f846b159b84270998f8d9f05c96d6a1752dea37991de08b5cc3","tags":[["alt","A short note: My kind of weight loss group!"],["e","7730f7d6f27a0cc13659ec83641ddaaab834b7233cc03e5785de696fc5f696ed","wss://bevo.nostr1.com/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[10:12:32.583] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"🫂😂","created_at":1759414352,"id":"99396f14ae6c28bfe753a218020b36d5d49838385f852a236c6c08152bea65d7","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"b91b791d4c1081c9619606ccfcf01212481dee1db3fd1c2a27a4739cb782e419eef200fcf85f194b0e0e0fd01cf03897319b04dc0f7cd1fe1889808b2bfa18a0","tags":[["e","7730f7d6f27a0cc13659ec83641ddaaab834b7233cc03e5785de696fc5f696ed","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","501fe878adabf7667b282230dbfd979fa7045eff5020d9c0b20d983a6848ae5e","","reply"],["p","9d32b961cb18a4ae26deccc20282ff17f835a8e44b2f1aae51928e5a51cabd21"]]}] +[10:12:40.368] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Thank you 🙠","created_at":1759414359,"id":"3a546c6cf0b72a8d96c1bbc1ffa2aeda4398384781e0c453d97870f84023ea9b","kind":1,"pubkey":"e651f1b6bb8e212d254296a135952cdf42601edccad8b62d92d3c945776e3685","sig":"9fe176f31d4e5852d10fdb5d04a479ec7cfadf828b1d409f08836cf7d9d3385159e958a56d0320e1fa2a920f6d21c1c4baf80a99f75abbfcb3f66cffabc8ea6a","tags":[["e","f30ccb23346de531b856146b18869a2453a16c62ba7bb4414215a7e6b2b586c4","","root","e651f1b6bb8e212d254296a135952cdf42601edccad8b62d92d3c945776e3685"],["e","000004cdb4b06dfc3468459403e31978e8a68b393dfea00c2a0254d24c8d9cc7","wss://ftp.halifax.rwth-aachen.de/nostr","reply"],["p","c558c7cc69bbda3c271782b736babc64acd2da258b14f356dbca966cb0b7b89e","","mention"]]}] +[10:12:41.090] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"I can’t 🤭","created_at":1759414354,"id":"15e7249d5589f31ac8e2309db010300de7d8a860c069267b268e9828f3a24dd1","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"ef32dbfafad6e1126d09e1434f355092a6b11e86ac49e754318ca7f78aa7b41fba79e1dd71b0fde88a8af8a7503e045fa52a53f1092570c0acb7042f0f7799d4","tags":[["e","bf97d5078b671f130bd764786a719fbfb29249f8146f65b19fbd6438d6c3b966","wss://nos.lol/","root"],["e","bbf926988237fc7eeb8fd68a2abeebf033e19cfce339f3fc0a03edc070c49eb8","","reply"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[10:12:41.617] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"👃","created_at":1759414361,"id":"91a9c4d442f83b6ed059b18155f641dc1b87ac01d28f9704e82e64e64419fb65","kind":1,"pubkey":"0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","sig":"128125dc8d3b28a2c14750ccbca5f15ba7a830a18bd9da7d117cdb543fe48508e3f326db14ed47a316c477537556d917faca11e1da5ca70119b169875989bbbb","tags":[["alt","A short note: 👃"],["e","e8f1aec46a1bb92fe8e3f610ddcff670911953a38d32664c5f2c6ae4630776b2","wss://nostr.bitcoiner.social/","root","5e70f2977a61214de215585a409f9592e65bd1b8177190700ae61937b1014737"],["p","5e70f2977a61214de215585a409f9592e65bd1b8177190700ae61937b1014737","wss://nostr.atitlan.io/"]]}] +[10:12:45.130] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Maybe both 😂","created_at":1759414364,"id":"cecf843dfc925abf3f63791090810fce6dbacfad2418a65bf4de263dd1694e67","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"b0245931b55d240503e62245b639ef15d8cf5dcf984fc50b4d89ac52d3c512e5f441289c99a5130a4f8fe3d893e8cc12c6f42fee2264c6e1e0d26262b1563f76","tags":[["e","0ad0c17e94d3a01ca09b7fc253967b18d28393dcb5179a3a40897e2fc4e1738c","wss://nostr.mom/","root"],["e","37f8d19f7a8fd89c0290c163355a5a43d9a6a4150460b6e612534b30be921fde","","reply"],["p","0627ca59e72c6433ae39f87fae3540e39b3edcbbea952b44d1ad7665a1489d8e"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[10:12:46.514] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"they are too big... I think... \nhttps://images2.imgbox.com/00/4c/AvE8X7eq_o.jpg \n#bikiniOnFire 🔥🙃 #bikinistr BigðŸ’","created_at":1759414366,"id":"a0e98d1e35d57074d0c5fabff8bcb06cf0c06c1e76b9e3cff188a9e3b302ffb5","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"30af2f4bb1f7017a553a3e40a1136b722a4f54c27ac4566c366bb72d98c6fac140c44b886bdd164381c2cd074b3e4bc7cb582324b5f6d4cb7e1cc689645a6d79","tags":[]}] +[10:12:48.120] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"暴力é©å‘½æ˜¯ä¸€ç§æ‰‹æ®µæ²¡é”™ï¼Œé‚£ä½ çš„目的是什么呢?弄死共产党,然åŽå‘¢ï¼Ÿ","created_at":1759414368,"id":"d96792f8e5aa0dbc2bd9256bc86eac8fe82254a20f62d9b9a560d95fc3cd0dcc","kind":1,"pubkey":"1b7333536d38041c31ca56c6ddef4498f00fb5a6d66210bac025ecee7e6e85b4","sig":"ba3d12aa05b40ea154e1e188046c53b86dc551625e20f05e00e6fdd48a0ddaabcd9d64ab89174017a79d62373ce7ca39df11d4ec7a80c6305f9946010c9f5dc9","tags":[["e","006690e1730ee5c3b664c05352fa1241b9273ef5711581c17946c7a19731c6ef","","root"],["e","a7cf3b4b46cdc558a43ba1341a531da5b30f6f8260d0719fe3c03743a3867250"],["e","fbfd50ad1df8d8d6ab4fbd3ab1b808347797a098ae7ad8d1f4fff9414cb66302","","reply"],["p","8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba"],["p","1b7333536d38041c31ca56c6ddef4498f00fb5a6d66210bac025ecee7e6e85b4"]]}] +[10:12:57.667] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"GN\nhttps://blossom.primal.net/971659cf025ea7b2dc11e61619106ab6427e985e9bb77178cfffbeaee3c0d180.jpg","created_at":1759414377,"id":"035e9370f0d54878174c3dad3c02e3fbc525e433109705b8bfe95ace97b7dda7","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"c140699830143f55e416bb5223e54c8168e2dfa2f5c96be25c4bc696bd12ff01e6afe0a4c18f9bc3306622e0ad3968ed4d6c7642c77a41ad4cb09897723eb154","tags":[]}] +[10:13:02.282] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"😂😂😂","created_at":1759414381,"id":"83ada9732551c3af39842bc336d234e9825eb18703f32451ddc2a0d94e082d32","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"82b359a95397a969241f8417e4849af42b40b5e888e40fe89cc4bbaeb8e49577c7b0b6e483c487a4de2a363982125f6e556501d4a8c435cbd8d2e877ce42b162","tags":[["e","7730f7d6f27a0cc13659ec83641ddaaab834b7233cc03e5785de696fc5f696ed","","root"],["e","a706f41564390fa61c9d4aa652204f14c41d0cd3d46fa8ae34dc0ac6f91a964a","","reply"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"]]}] +[10:13:02.342] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"https://i.nostr.build/PFSR9IhLEoaPpgfy.jpg","created_at":1759357703,"id":"a706f41564390fa61c9d4aa652204f14c41d0cd3d46fa8ae34dc0ac6f91a964a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"24941a750606fc0a8a63a703002aa60b06909fa941b0740d42fba5214eeaa7b0689b3848edcf3802e923e6c96b003deef280fb598bc1b741ed9a2f623e5136e5","tags":[["e","7730f7d6f27a0cc13659ec83641ddaaab834b7233cc03e5785de696fc5f696ed","","root"],["imeta","url https://i.nostr.build/PFSR9IhLEoaPpgfy.jpg","blurhash eB84YkpF1Zrv=dI,knx[epxHx]aMVsnlRjIUn+xuWCkVxuWoR%jbWB","dim 2048x1386"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://i.nostr.build/PFSR9IhLEoaPpgfy.jpg"]]}] +[10:13:02.745] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"æ¥å¹´ã‚‚ã©ã†ãžã‚ˆã‚ã—ããŠé¡˜ã„ã—ã¾ã™","created_at":1759414381,"id":"80f975e5cb5cd68724f8fcbfdf6ea825339786145cac92293c3824f2a7ec8187","kind":1,"pubkey":"8d39a0f9a133b626f5705324c39a3530ca01fae177ae3bb85d82aefe6c725f33","sig":"cb30da9654f8b651486aa010ea2e6bc679140067481aeae56599d531bf5753d7aa7d0f3ae1e342bc1fbe67de9b78d68c42e36d9675cddebf8ce07fa5b13539cc","tags":[]}] +[10:13:18.695] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"• _ •","created_at":1759414387,"id":"3353137bff31ad827495822154bfe7f03d9cf7a138b178820b5bd3229dd9deaa","kind":1,"pubkey":"28feaf9099bd785dfa003fc941b24aec3d5e8d2713b81d33ff2ca9d61041c039","sig":"dba1677225cd1b09e6ca5ccbae221ac20f5c24a40e5e814d0ec4d98c5f2b92511cc529d54e618bb08cbe3fd3cd428b32d60073be3e6a9ef664c2c0f1ce2083ae","tags":[["e","f896bab4d6ea827d479971b9c1c5a6785386f0a5139473ea3dd8a6b588e056a5","","root"],["p","28feaf9099bd785dfa003fc941b24aec3d5e8d2713b81d33ff2ca9d61041c039"]]}] +[10:13:21.421] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"🔔 Generál Řehka: Pokud to myslíme s obranou zemÄ› skuteÄnÄ› vážnÄ›, nevyhneme se nÄ›jaké formÄ› vojenské služby : \n\nKvůli nestabilní bezpeÄnostní situaci ve svÄ›tÄ› a hrozbám z Ruska je velkým tématem souÄasnosti i nábor nováÄků do Äeské armády. Jenže lidi se do ní nehrnou, aÅ¥ se dÄ›lá, co se dÄ›lá. PÅ™itom nové cíle NATO pro ÄŒeskou republiku říkají, že poÄet vojáků máme v příštích deseti letech podstatnÄ› zvýšit. Co s tím? Na to v rozhovoru pro Reflex.cz odpovídá náÄelník Generálního Å¡tábu Armády ÄŒeské republiky armádní generál Karel Řehka. \nhttps://www.reflex.cz/clanek/rozhovory/132304/general-rehka-pokud-to-myslime-s-obranou-zeme-skutecne-vazne-nevyhneme-se-nejake-forme-vojenske-sluzby.html \n#CzechNews #News #Press #Media","created_at":1759414382,"id":"8535e54ff92b6a3f20a287055ca07cced09fef7c13213771fec2e68a0aa85e03","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"1535e39d166871ad8b10159f9f044258134079e9aca15c0ee9548a00270ef2f23b820e9dae57b687ae2c23ab1eef855e7dabec37a9384e0cca57e5ce0ff7e003","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[10:13:26.071] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"The MAHA Betrayal: Pfizer Rewarded, America Backstabbed\n\nFrom Dr. Peter McCullough MD\n\nby Nicolas Hulscher, MPH Pfizer is not a trusted public health partner — it operates like a criminal enterprise. With 107 documented penalties, Pfizer’s record reads like a catalogue of corporate crime: false marketing, safety breaches, kickback schemes, environmental violations, foreign bribery, and systemic fraud. Pfizer’s rap sheet includes some of the largest criminal fines […]\n\nOct 2nd 2025 9:57am EDT\n\nSource Link: https://www.thefocalpoints.com/p/the-maha-betrayal-pfizer-rewarded\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044267","created_at":1759414345,"id":"96ede7f92a11f0cb36bca465d035cf506ee5926d4da54a75bc54f6100e628a5d","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"99caa7a42f5ab6b87a919d8869003a707f9fbe9f2f973bafd6842e8a0049fbb56e3e0c8c040c28c76f82f8552437b9208e581eff85d9b3d997f6f0269d7a408c","tags":[]}] +[10:13:30.559] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"I wish Amethyst or Primal has this share as a highlight share intent.","created_at":1759414410,"id":"75ba53e6de043c6055bc4d7d10d04aef041456e6459a5536fdac1d445a86fdd7","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"93bfe15d307b49bfd52d27afb84fea60ac1a42975015f08c7a1d844ab1ec7c95e36ae7be2f8146dff97c762584dbf12046ef11eb9c45e92d89edc351f0787bbb","tags":[["alt","A short note: I wish Amethyst or Primal has this share as a high..."],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","397533a61e67b83f2f48872d99551bd90ec1b24d9c188a51466790ecf206688f","wss://nostrelites.org/","","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","0821163585f1b03373f981488fb3f31a12913bb06a3d920300b1d690965e7e61","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://nos.lol/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[10:13:37.047] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Either way, a cutie","created_at":1759414416,"id":"8381e095753347cb5ff49f2f4be1ecec2d57da875229f34912c01cda5632b6ae","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"bc4e31a4798a3e6b077ca37689542fe01c1463e61d016c2d1bece249ae3bc30c31af0357cbb6dfc459cff2da91a9fdd51496325b76f86db71c4663ad1fb979ac","tags":[["e","dc252520cc1d54598878edf890c9fd2bcabda058445494767f6bee479e4e8b93","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","b07bfd7f17b2edcf390d1f13ca72024595cedd64cc7317f84dd69781df8cd25a","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26e9ab7f2c8d2ac37903af90be2a1aef6f2acbd699f4f259caac7ad33d2000c1"],["p","079d727bee3d805e24758861ea4d028b2e6a37805f8db45bf8045bf900099650"]]}] +[10:13:37.108] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Yup a labradoodle I think. Originally thought she would be a Groodle but didnt really care once we met her","created_at":1759414190,"id":"b07bfd7f17b2edcf390d1f13ca72024595cedd64cc7317f84dd69781df8cd25a","kind":1,"pubkey":"079d727bee3d805e24758861ea4d028b2e6a37805f8db45bf8045bf900099650","sig":"f63f69ff93628b50196f1b734fec213cb3a493a720806215e901eed706745f94a4c74ac51f547598a04b7f6f52966ced3cd21ee328a3fa597b5e3c48d67438bf","tags":[["e","dc252520cc1d54598878edf890c9fd2bcabda058445494767f6bee479e4e8b93","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","da8de9cd3d37448c0ab829275560ef36a6f02a833fbb2bc91ba2041bc4f0af06","wss://bevo.nostr1.com","reply"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","","mention"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"],["p","26e9ab7f2c8d2ac37903af90be2a1aef6f2acbd699f4f259caac7ad33d2000c1","","mention"]]}] +[10:13:37.279] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Did you get krunk during the dot com boom period? ðŸ¥","created_at":1759414410,"id":"60367ed973a753f7e82d695c31da2d6a6e50353ad0257c1aadf40ab8c4ddd516","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"48471a8254137a676e2bb64c3cb5ed58258b0adad8f7c84ca1506e11f64ab4cfc18fabfe1442ebc38f5d44147f225649d999fdafff745166c3f012decb8c0309","tags":[["e","d4f6442a2095f647603e525aedff2fa453a17a9f6e86eb674d6774b358d42ba2","wss://relay.coinos.io/","root"],["e","78a766446532e68374614b12b19a523ed3be045fd58831447b6c5136caa39fbf","","reply"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","9fc2eee4cf964fb9ec76b1e0cb4935b911d3abc1b36660ed295d4cbec80993a9"]]}] +[10:13:50.574] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"What about population increase to the area? More people wanting to live there increases the demand for land. Supply is fixed.","created_at":1759414430,"id":"da6d0a159d35e1e20c10126cf5084876906123666ce25a0484e9a30c885107eb","kind":1,"pubkey":"10dc30b77d65c2884d0226d8ead2d52d50d766703ffdcefbf4a071b3e732fa67","sig":"6aac2cec6cbc6b91a8f994600f57ecbfd0e23d9221517583482af914000a831616c44ae7dd59ad203447254aa1829c55eae37b4aa04862b9870dc151c3f0d669","tags":[["alt","A short note: What about population increase to the area? More p..."],["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://relay.bitcoindistrict.org/","root","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["e","19bd60c546da310a5717bd4fbfdc77f9f04c38a9f2cf90a7f818d7a0b5046030","wss://relay.nostr.band/","","dd98ab08b437934e231ff517b98258efa9c89639c28b6512980f09f12314572d"],["e","a4fd3831266d53dc7380dd904a627d60847482226c8967e2ded784b07f301897","wss://relay.bitcoindistrict.org/","reply","65adf3ee643473901339d99ca90a8cba6a8f9a465c4813e9023aecbcf0a4c12d"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","wss://eden.nostr.land/"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://bitcoiner.social/"],["p","dd98ab08b437934e231ff517b98258efa9c89639c28b6512980f09f12314572d","wss://relay.nostr.band/"],["p","65adf3ee643473901339d99ca90a8cba6a8f9a465c4813e9023aecbcf0a4c12d","wss://relay.nostr.band/"]]}] +[10:13:50.635] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"pwned","created_at":1759414425,"id":"6ad90b6e2e2522d7a55b19d36b7e36da2815e24c2687776847eab42f84b4b431","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0823f7625aa62db88110d0fa86feb484179e0f3c8c62a01cfdfe3c1c5ffac534778c4edf7d23357d57a8d9f84857e6b4c0811f81907c1d4b82adabb19ffd32a6","tags":[["alt","A short note: pwned"],["e","090de807f2af541ca52cde92867e52a8e4c8d7731057289aa2c43613beb39c0b","wss://relay.damus.io/","root","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["e","4f8a10f776b33d22741a8f140fc067331cf9a393d833b2a9128b3ea3ee76d778","wss://nostr.wine/","reply","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0","wss://eden.nostr.land/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://nos.lol/"]]}] +[10:13:57.355] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"try to stop me - oh, you can't? muahaha https://relay.dergigi.com/bcd62b91b906961a835af79aa518761bf160552018f4c6a7e4cbecb583d3fe01.gif","created_at":1759414437,"id":"abdf1432fdecfb2aa17328690f91140b8c43f1f4f7df5edef72e046c1cffed02","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"50383cd68fe81a47b7fe0f58a5faf74415d17c0a27f6d046948abce84d2b177bea151345b71639a99a5056aa399c8c2c8d3482fe1923b5f846f483e80f2a6043","tags":[["alt","A short note: try to stop me - oh, you can't? muahaha https://re..."],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","29f58a67e00085f2d0e6d1604cd0a98ca170ff1ea90d5c581f6c555450e523d3","wss://premium.primal.net/","reply","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["r","https://relay.dergigi.com/bcd62b91b906961a835af79aa518761bf160552018f4c6a7e4cbecb583d3fe01.gif"],["imeta","url https://relay.dergigi.com/bcd62b91b906961a835af79aa518761bf160552018f4c6a7e4cbecb583d3fe01.gif","x bcd62b91b906961a835af79aa518761bf160552018f4c6a7e4cbecb583d3fe01","size 41584","m image/gif","dim 220x124","blurhash iKCsU49GUZNvxGt7t7XRX,u4IV^6SzNFoJTIWBxauNRQ%gjZM{n%f6bGofnPt7NGn%s;aeofW;jZE1%LE1sonPeoaeaeWB","ox bcd62b91b906961a835af79aa518761bf160552018f4c6a7e4cbecb583d3fe01","alt "]]}] +[10:14:00.332] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"I'm afraid that I am the polar opposite of Soros.\nI'll try lighting a candle and praying for Divine Intervention for my New Evangelism effort.","created_at":1759414435,"id":"29a80081c98e898934ba9b798e55760f3eddbda1625cf5a03de03bc835c61ddf","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"1c02baf9bff2240a77c6fa1ecae6f6d48c747c488d001018daa53ef094e6f370703ad3c9461c1cfefc0027dcbcaab14cdb584af851af51526973a0d0d38f61e0","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","fdbc831c5354cc250410afaff902015945849b2c1ace2602a2dde67050ef2a79","wss://orly-relay.imwald.eu/","reply","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"]]}] +[10:14:02.930] RECV nostr.mom:443: ["EVENT","pool_1_1759414290",{"content":"Guldrush i östra Finland – miljardvärden väntar under marken\n\nFyndigheter som tros innehÃ¥lla guld värt flera miljarder euro har upptäckts i östra Finland. Gruvbolaget Endomines planerar nu en massiv expansion och siktar pÃ¥ att bli en betydande global guldproducent.\n\nLäs mer: https://nyadagbladet.se/norden/guldrush-i-ostra-finland-miljardvarden-vantar-under-marken/?utm_source=rss&utm_medium=rss&utm_campaign=guldrush-i-ostra-finland-miljardvarden-vantar-under-marken","created_at":1759414442,"id":"4a2af61182867d8280eafa6465b11ca1d83860fbd14c9a4ffde878491835cebe","kind":1,"pubkey":"ddb50e07a450a7fa67573305ec6696819f1ee065f4fa13457698b787b8467a5b","sig":"63cbdae507a3a04051f0a970c0fa225bce08d7f37155ca56864ccb946576d0df8e1209f147384fd297c470317c4edf78d4af3cf883ad1c7c2b76bac54ab58981","tags":[["t","news"],["t","newsbot"],["t","rss"],["t","nyadagbladet"],["t","sweden"]]}] +[10:14:06.803] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759414290"] +[10:14:06.803] SEND nostr.mom:443: ["CLOSE", "pool_1_1759414290"] + +=== NOSTR WebSocket Debug Log Started === +[10:17:16.994] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759414636", { + "kinds": [1], + "since": 1759414632, + "limit": 10 + }] +[10:17:17.071] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759414636"] +[10:17:17.770] SEND nos.lol:443: ["REQ", "pool_1_1759414636", { + "kinds": [1], + "since": 1759414632, + "limit": 10 + }] +[10:17:17.956] RECV nos.lol:443: ["EOSE","pool_1_1759414636"] +[10:17:22.894] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"横浜銀蠅ã¿ãŸã„ãªã®ãŒå­¦ãƒ©ãƒ³","created_at":1759414642,"id":"1d3da558cf56bb6a1a42c41583eefb9fa709eb2640453c66eb1d827ca2d9dff1","kind":1,"pubkey":"1066a05d1474e7e133a97208a5cb177a9c01e4b81f0f14370ad59f4a0a475681","sig":"0cb13554946f750dc89dbf4ec0ecdfc1d07c9248245d4706204d6f9a8edf1ea86e79dc0c497ce5517de658a2472fd19b09bbadb66425dbad0e567a382a903995","tags":[]}] +[10:17:22.955] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"é³¥å–砂丘ã®ã‚¹ãƒŽãƒœæŒã£ã¦ã„ã£ã¦ã€æ»‘ã£ãŸã“ã¨ã¯ã‚ã‚‹ãªã€‚","created_at":1759414642,"id":"6a4a88b41837d9cf61c12a620a0493995df91efb13a846c461dc5fc42a91fd00","kind":1,"pubkey":"b7ab2dc03c22d569cf7c307ea8a59780e89b93c944c62d40bd3f57f5425ae9b0","sig":"852b6fc8e1ef525a49e3246eef63f5202c95d24cf0b863e14a2255b11cd8982bad344ae1495d3df7ba4f989f4fb112080aa089c471d2bb589a44be8a04ac3236","tags":[["alt","A short note: é³¥å–砂丘ã®ã‚¹ãƒŽãƒœæŒã£ã¦ã„ã£ã¦ã€æ»‘ã£ãŸã“ã¨ã¯ã‚ã‚‹ãªã€‚"]]}] +[10:17:31.866] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"pythonã€ä¸€è¡Œã‚‚書ã‹ãšã«ã²ãŸã™ã‚‰èª­ã‚€ã ã‘ãªã‚“ã ã‘ã©ã€ã‹ãªã‚Šãƒ­ãƒƒã‚¯ãƒ³ãƒ­ãƒ¼ãƒ«ã‚’感ã˜ãŸã‚Šã™ã‚‹","created_at":1759414652,"id":"4e1b5605d643baece5f135d3e75be7ebd2eaa50e251200fdb828c2fb0ae5e08c","kind":1,"pubkey":"0f38afb23cec30570ee64f9a4aa099229395ec3371c5fe867e09c9111480015d","sig":"de392fbd90ceebcce82f39d1dba32deea86b4b7123b4e9d404828fa0f53772fc5ddc8351488df4ff49720e6f11b38ddf1fcf1ed82ad1a6bc3fc1bb52c3bf9e4b","tags":[]}] +[10:17:32.590] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"I love chocolate. ","created_at":1759414641,"id":"351050d76abdb1c1d700f25411a6eaa797e692c99fea406a3b082fef16232aa1","kind":1,"pubkey":"fade1651214f5f33f38609ba748b1e9b237cbe41f2e622145cf0f83d17321c66","sig":"defa7e7dd45db9e10771a1fc2d24b54b7195a47fe224232f1654f637aa155c6bdae2b4d6237beb12457098813868a7b9ad9b519f0b98a80b3fd03ab1a884cc0a","tags":[]}] +[10:17:36.886] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"nostr:note18uq72p9arrw4qa6vqa69y3lnk6qu8nfgvjfu67sexw03myaw9h2qelw9yw","created_at":1759414656,"id":"6cdcf8d23b0610d7882cde23543406ba578166674d7ae4fdcdc51d8fdae75780","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"922a24b470ec84de6462fd862c2b04dce39d3a40d39a846d701f641b18ea2f13c3bdaac1892c4e1cd54169395adb1cd2593440a27a788d4fdfc491681fefc6df","tags":[["e","684b8c9defa25001399d5fe7dcb416973b6c113495f558ab6e91efca05057a0e","wss://relay.damus.io/","root"],["e","438beb5f0302217cc0c4ba4f68055716f0803ee5c35221f4079395803a03cb11","","reply"],["p","50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de"],["p","0e52122d1eb95cdd8ba5f65815f7d1c9125a8c14d82989eae52ab369eea6c7e4"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","7cc328a08ddb2afdf9f9be77beff4c83489ff979721827d628a542f32a247c0e"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[10:17:38.054] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"求む】ã™ãバレ対処法","created_at":1759414657,"id":"4eb1ccafd92771149a65f0ff4d43a78958dc4c50d0e05a625855c97d5a868f7c","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"5c61075673ba0d2d2fd136ae6ca35ee79716fc0b4cec13f1f72964610d3e853800e9870a50f98f57154fca6e03d1af627cdac2ed0ad4024314179c124f369c0d","tags":[]}] +[10:17:40.795] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"💯","created_at":1759414659,"id":"70880d82877d7c587864a5fd72d9cfe8fea20d0968c1421bb274f21459b40403","kind":1,"pubkey":"a42048d7ea26e9c36a67b5ff266c508882a89dbe36ef603cc9c6726326886c32","sig":"e330d8f256c67b0f484c081a269519d5e3242fbaa215877d853b66bbf2b10d20909424c0198033cd5ac434486bc115e951bb08eeed09305c29e1341a498fd90f","tags":[["e","ba57f3c4e585f8df5f5790867dafe512f34b7f46036991e8a7e9ad6b303d49f3","wss://relay.damus.io/","root","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975"],["e","0d7861b7d8f0440fb649b920768d2a318b8f2d72f077a870a88c165e27f2f027","wss://relay.nostr.band/npub1dg7n7g8440wrrqkw2kz88gqrvde0nasfnhxxu64l5pc7x6jkn0xquxzskl","reply"],["p","2183e94758481d0f124fbd93c56ccaa45e7e545ceeb8d52848f98253f497b975","","mention"],["p","765609c7ece4a9a5262ace318801e4798394a5908723ec7d4b48f841b488a3e9","","mention"]]}] +[10:17:45.280] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Aye aye aye!\n\nhttps://media1.tenor.com/m/BWSjUFPBVEYAAAAC/dance-marge-simpson.gif","created_at":1759414664,"id":"635a30ec4a7314ed0000a58a1ffcc7c7208a746562ae53086e88c747a0dcce69","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"31c7480538b5deac21a9a70c83762f75cafa1c2f18bade72fc62367cbadc8185cb77c2b48a139548cd5021797eb3ede0fc3d2f0467cae241354a646012cc9ab9","tags":[["e","d4f6442a2095f647603e525aedff2fa453a17a9f6e86eb674d6774b358d42ba2","wss://relay.coinos.io/","root"],["e","553e400bf940203a9bbf67682282ca0eeea61b50c79b36805947380c221e6a0b","","reply"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","9fc2eee4cf964fb9ec76b1e0cb4935b911d3abc1b36660ed295d4cbec80993a9"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/BWSjUFPBVEYAAAAC/dance-marge-simpson.gif"]]}] +[10:17:45.930] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"シーフードミックスãŒã‚れã°ã‚¯ãƒ©ãƒ ãƒãƒ£ã‚¦ãƒ€ãƒ¼ã£ã¦è¨€ã„張れãŸã®ã«","created_at":1759414665,"id":"a1008993804ee844051952d5fcf9c3fc70187abe4dae7a2090e5d6bf09b9d122","kind":1,"pubkey":"a5d343c36c492abdf3e58b47b451d2dce3cd3170df4413c6f493eb9591c2f261","sig":"56d24b139485eb5e0badf24c60831898930e9ae6ef54eb30344342d9a0207fe91a56f7c54c1193080b3e0402995e97e33da711c1e1cad8a2cf00f86469f8db02","tags":[]}] +[10:17:46.987] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Why are bitcoiners so afraid to call out the real root cause of the destruction of Weimar, Germany?\n\n\"Hyperinflation\" is incorrect - that is just one of the many poisons that was injected in by Jews https://blossom.primal.net/55b392b4fe4b1f5e3ad27de3567fa2e817ec695e13fea5475c145d462452c149.3gp","created_at":1759414666,"id":"27fe2594fa770c6ccbcbf68fd6d726952a6b881e14355b76887bc65f7511c320","kind":1,"pubkey":"0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","sig":"ad89faf13f112ffcade8183d4890992050316b0bfe3e964e4bc5e31665d6b1ec6b591cf653c772f15c7373458bf63a325cf3070963242377b9036e461e3a15fe","tags":[["alt","A short note: Why are bitcoiners so afraid to call out the real ..."],["r","https://blossom.primal.net/55b392b4fe4b1f5e3ad27de3567fa2e817ec695e13fea5475c145d462452c149.3gp"],["imeta","url https://blossom.primal.net/55b392b4fe4b1f5e3ad27de3567fa2e817ec695e13fea5475c145d462452c149.3gp","x 55b392b4fe4b1f5e3ad27de3567fa2e817ec695e13fea5475c145d462452c149","size 24183621","m video/3gpp","dim 720x956","blurhash _5A0t9W=00xaIUoIRj$dR*IpWBtRxaxu00t7?aM{jZazay4=j[-oj[WBoffkxvRkoct6kCt6of~qazIUayM{jZRj4nj[ogRjxut7of?Gj[M|ofayj[of_3fPIUazWBWBj[","ox 55b392b4fe4b1f5e3ad27de3567fa2e817ec695e13fea5475c145d462452c149","alt "]]}] +[10:17:47.288] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🟩BUY BTC with EUR\nPrice: 102096.77EUR (0%)\nBTC: 0.0034\nEUR: 347\nMethod: Revolut\nCreated: 2025-10-02T14:16:31Z","created_at":1759414667,"id":"c17d43903ddea2cbf6add9143098160c69b52e399de5922168269334df2cd4bd","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"cd4494343105522d504d9d1dc8ce6ee8abf4c8cfe7ac2529a7a223bcfc1ef7a63101d7fd6deafe1563320f64ada309dfd738aaa9ab4491f0e0b6ac1ce6ed535d","tags":[]}] +[10:17:48.354] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Read this to your kids …. For they will sleep well and tell them you love them . GN ! \nnostr:nevent1qqs8jh07k0na490c7xqra80u9j56q62tqeteq7fzkv9wrjl0q499z7s2nk5cz","created_at":1759414668,"id":"695a0743e9ac7d553811b4c66c93f5f5954ff86bd2bb3a7b08d0d7523d1f982f","kind":1,"pubkey":"68b2f625d84c64027f61fb384e0eae06075951e260b79f4f0262c4946c79bfd3","sig":"e23d0d36acd1b978a40f94c65982960ad03bb07d048c91837f20d69e5b54fe247a579e43efa453dbf7661da7fc670807d948921ed288cb83a8e25fe5a91de7a8","tags":[["e","795dfeb3e7da95f8f1803e9dfc2ca9a0694b0657907922b30ae1cbef054a517a","","mention"],["p","eaa06714ac905aa5583860391e161edc7a815359b7c3e9b9b202c0558aefbeac","","mention"]]}] +[10:17:49.299] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"333. ¿Quién puede recibir este sacramento?\nSólo el varón bautizado puede recibir válidamente el sacramento del Orden. La Iglesia se reconoce vinculada por esta decisión del mismo Señor. Nadie puede exigir la recepción del sacramento del Orden, sino que debe ser considerado apto para el ministerio por la autoridad de la Iglesia.\n#CCatecismo","created_at":1759414657,"id":"09dfc001c8d77dda7d200be2aeff2d01a6a80271f69a8b0b595abc336d7a3bb0","kind":1,"pubkey":"9e0efff07bfab2444ceddce9549db55d3c5a0bbce8b7c9e6ea4b9f0c6b3132cc","sig":"d0dc2836b82fa1803bbbd83d4783ac55314b1ca91be271c16ef6733a21d1df9c3086600b1fa23bbe5a3eb7c402e05bb355d3aeba0f202c90827b2c9eb3ffbba0","tags":[["t","ccatecismo"],["client","Phoenix","31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"]]}] +[10:17:51.572] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"\"try to stop me, you cunt!\" ","created_at":1759414666,"id":"7a0b0b42b01d05d3dd403323a7c1ad397521e958bb704263270a70f42d2f33b5","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"59b34d0fdacffaf1d421f2c8946b794f3fd71fe5fd02f57cd2725f8b95fe519f06e3da0eadd879e5b22e790aff47c3c57801566b59cee3e81c8d666129db3a75","tags":[["alt","A short note: \"try to stop me, you cunt!\" "],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://relay.damus.io/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","29f58a67e00085f2d0e6d1604cd0a98ca170ff1ea90d5c581f6c555450e523d3","wss://relay.damus.io/","","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","abdf1432fdecfb2aa17328690f91140b8c43f1f4f7df5edef72e046c1cffed02","wss://nostr.oxtr.dev/","reply","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"]]}] +[10:17:52.431] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"I also do it everytime I have extra. Great call! 😊 \n\n","created_at":1759414670,"id":"233e5faddc6d3fc965ffc337a347a19543402f287ef6d5c7bdf062f74ba27b86","kind":1,"pubkey":"3b1bf4742873980ed62a2190e3b0f69d69585cb9818f70931817bac2c98b1527","sig":"30f8e418666d0a2dc9d951f31088b82aeabc24c51275e1f4bba1049a20ade691569717c74fbc21f2cd7d4f1f14bb39c51310e66975d0f22b51bbffe40014c0aa","tags":[["p","9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","wss://relay.primal.net"],["e","646021d9db47c57c2857777178cb49f483028f52b4c2a492bc9c3f1adf797523","wss://relay.primal.net","root","9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c"]]}] +[10:17:53.599] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"é³¥å–砂丘ã€ç‰¹åˆ¥ä¿è­·åŒºã‚„ã‹ã‚‰ç ‚ã¨ã‹æŒã¡å¸°ã£ã¡ã‚ƒãƒ€ãƒ¡ã‚„ã£ãŸã¯ãš","created_at":1759414673,"id":"5afd17cde865b1ae21e51e3347935033c0c03efa2f51c06bcfc8e328ee05b537","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"84188fbac476b4df677f3c6decd3473817d3bf207ff76d2e3734fb583a4d4ded86135d544c52df2a21468c35ead545df5f4f4b4374068873e76df4fdf0ef07d9","tags":[]}] +[10:18:00.903] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"高校ã¯ãƒ–レザーã§ã—ãŸã€‚学ランã¯é¦–ãŒã—ã‚“ã©ã„。","created_at":1759414680,"id":"46530a2d9b86073d5b7778f2f9361c9168abd07a4b9fe1d39d44e1415844d279","kind":1,"pubkey":"1066a05d1474e7e133a97208a5cb177a9c01e4b81f0f14370ad59f4a0a475681","sig":"3dc3362183b013975c22eca78eda2a00af452a752d19a4b5ae6c022f354efe6ccacbe64fd49692804704ff8ec619d0ead5a08ad048f150ce723bcd1ed5f773cb","tags":[]}] +[10:18:02.301] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Racing outside F1 is “more pure, more clean, more fun†– Alonso | Formula 1\n\nFernando Alonso says he understands the appeal to Max Verstappen of racing outside Formula 1, having done it himself.\n\nRead more: https://www.racefans.net/2025/10/02/racing-outside-f1-is-more-pure-more-clean-more-fun-alonso/","created_at":1759414681,"id":"b2a385f6241c0e589a332d5b04f4b3b881de285559ffc79b06d39b1542446806","kind":1,"pubkey":"5ddcd4fa6c18807394359d442e6e8a97e4cb201da147aca250807b39aa2191f6","sig":"c8b11765305f008f479dd700a520e8f227e2247524275574b8ef2397518406bbe26f61ec8f4386cfd9f174a6253e89fee5e56e4fede94fe8c6d3a9616cc75fa0","tags":[["t","sports"],["t","newsbot"],["t","sportsbot"],["t","rss"],["t","racefans"],["t","f1"],["t","formula1"],["t","f12025"]]}] +[10:18:21.178] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🔔 Desetitisíce Francouzů opÄ›t demonstrují proti rozpoÄtovým Å¡krtům: \n\nDesítky tisíc Francouzů ve Ätvrtek opÄ›t vyÅ¡ly po výzvÄ› odborů do ulic, aby se domáhaly sociálnÄ› citlivÄ›jší podoby oÄekávaného návrhu nového rozpoÄtu. \nhttps://zpravy.aktualne.cz/zahranici/desetitisice-francouzu-opet-demonstruji-proti-rozpoctovym-sk/r~7fff079e9f9911f0bf960cc47ab5f122/ \n#CzechNews #News #Press #Media","created_at":1759414681,"id":"d23e3231def474ec57b284b3bf23bd7cd0ef1e3794f8e2c165aa2cc22f86db15","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"6abb204dfe266b27b16b7b278669ffd7b7313cb60cf3c94556a03d4ae673fdc17360e63c8019db2b78d76c3bca854d55425c586905565a52bb7223ae593d83bf","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[10:18:21.691] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ブレザーç€ã¦ã¿ãŸã‹ã£ãŸ","created_at":1759414701,"id":"c9ca13acd23f84397cdf8eb5b549d58c9502c6f3dd71d4478d707601f46dd8fc","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"ed74268fe3661b5439129f5813e4e8c0ce06c124d83a9355904459f0d2bf32cd64ec2b370a3723f811309f0df3512c4760b6d0d6ef9ae2f0481534bd4f817ca4","tags":[]}] +[10:18:31.819] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"布団ã§ã¬ãã¬ãã—ã¦ã‚‹æ™‚ã«åŒã˜å¸ƒå›£ã«å…¥ã£ã¦ãã‚‹ã‚„ã¤ã¯åŒæ€§ã§ã‚‚異性ã§ã‚‚張り倒ã™ãŒâ€¦","created_at":1759414710,"id":"d84a073df18cab84342dd8a21dad918d9155efca93c4e10cd237821ab512e071","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"dd237e77507ac58a72614135677832e7c1eb5ec546b9074a563f98f37bf987c743bd96592705bf8523b4d7db351b858e395620b7ef8f91fad2aa32157d02656f","tags":[]}] +[10:18:31.880] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"summer training in full swing. skiing soonðŸ™\nhttps://blossom.primal.net/7fa38c5c4940af98c31143fc3a3aa8a5d2ee9eae64e7a10b9844a509ba89d9cb.mov","created_at":1759414711,"id":"6d35d206beb4e6a8633ea511f589823e753e499be3c6491a306871ee83fa0e84","kind":1,"pubkey":"d43921d1a3308ef379c247549807a32c8ff43cef49d8aeb7377f298f063926af","sig":"4aa11f033520c845f6f6de7305718880d63012588421048c259a2f2b93bbd4402f3e851df1aaf9bb450b991e136d7741f8839134803fff8e9787f6e1803ab589","tags":[]}] +[10:18:38.480] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ãªã”ã‚„ã¯ç›¸æ’²ã®åœŸä¿µã®ç ‚一粒も残ã•ãšãŠèŠ±ã‚‚å…¨éƒ¨å¸ã„å°½ãã™ã‚ˆã†ã«ãƒ†ã‚¤ã‚¯ã‚¢ã‚¦ãƒˆðŸ¥¡ã™ã‚‹ã‚ˆ","created_at":1759414718,"id":"b599f75b4f8b054786405f907c1accdf13580e127ac2922cb138aabbd8864bee","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"75f9b757504cddf6fa2c455dc8a22b5bd1548e5d39558ab07a73633336e63f2856f9f1c995f72cf14e9a3bc76f03de1e6ee0d74c1748e00f1c03e92be5de2c0d","tags":[]}] +[10:18:40.311] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Dude, I agree 💯 with all you mentioned. I am a do’er. My boys can see that, I’ve got my character flaws as a father, but exercise, nutrition, hard work, love & compassion. I am a role model.\nI just can’t spark his fire for drive and determination. Motivation to win. Is this getting more rare then in generations before or is this just the age & maturity level. \nTime will tell the story. ","created_at":1759414719,"id":"261caeb98e3f6fa48b2a067de54e0b31e723f46329bbb794956d5d5daf7a72c8","kind":1,"pubkey":"8fda2199c4399fad7ff4126b402f1f5ee157fdbe4c0951e64dfe31aaec877ff1","sig":"c8fe68b7f0d2088cb07920560ab13bcfd297b3edab0a71e8cd777b9f6a97ed37762c2447d395201b40b77ceb483a4e64bfb19a1aa3e2d2bb64a8c6d5831b9c94","tags":[["e","1b454190ab51e9892abe8fa9bc576d7e3894085ecc36b942a26fac6d6950cdc8","wss://nostr-dev.wellorder.net","root"],["e","9bdfab5da255f260eaa7568ede317164b4696506e2639225481ea00758f8fc14","wss://relay.primal.net","reply"],["p","45904b28ffe0e5cb9132f9a08e976ed7f0fc57d8387781ea9c80f256c412c1b4","","mention"]]}] +[10:18:42.622] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"The clowns running our government are a self serving apparatus more concerned with perpetuating their own power than advancing the national interest. This isn’t governance, it’s an agenda driven machine that enriches itself while the country suffers. I’m advocating for minimal government constrained to its legitimate functions: protecting individual rights, enforcing contracts, and defending against aggression. Everything beyond that becomes an opportunity for corruption and overreach. ","created_at":1759414721,"id":"b61aa74053a12a54f7d997ef7112df0129486ec16a44478e9025c5d449d5aab4","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"5283e26def489ca3097f98308d589f1f165bbde38aa883926a7d7962fef70abfdde6461d478dd8ff8a5271a91ea124d63bf1567d634385986158de4228bde548","tags":[]}] +[10:18:43.901] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Gm guys.\n\nA skunk sprayed somewhere very close to the house, maybe under it. 🦨\n\nI haven't seen he cat yet. Hoping she wasn't the reason my place smells like ass this morning.","created_at":1759414723,"id":"d305ca33f85ad286ee795beb889ba0695f412833747fb365e302326d363f7a2f","kind":1,"pubkey":"678a308e59c24ee1b342b0fe9abdf6fdfa5dccc30aeb275a537e1f7fa0609fbc","sig":"913acef31ca59c67ed955e5b5a2d686c5ad9d6d262125752c8ec8954b0613e9c0ef432258272f704184c65c2d7ae56886a4fe41db017db916d63aaec4221d9c1","tags":[["alt","A short note: Gm guys.\n\nA skunk sprayed somewhere very close to ..."]]}] +[10:18:44.987] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"GM","created_at":1759414725,"id":"9ccf8a20303cb512bf0109868b71a9024832fc519818bdc8d8bd78bfad2d0aeb","kind":1,"pubkey":"02a11d1545114ab63c29958093c91b9f88618e56fee037b9d2fabcff32f62ea9","sig":"9a870910be7776a8c7b39de9c9c49a4e37e8a951342a5afeb0e3228ebde39e23520cad57f35060d857c17d14ef6bebed910dee915c89ac19181e98ffc45e7c48","tags":[["alt","A short note: GM"],["e","9a85f341c3ed37fa333abcf7166edf0d94bb9715c14e43120de71ab6318b743b","wss://nos.lol/","root","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://wss/"]]}] +[10:18:46.043] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"奥様元気やãªã","created_at":1759414724,"id":"c4956fe34e23b247aca99694b2b3edbe895d8a3b3ef748b152e6a323c45a743f","kind":1,"pubkey":"8d39a0f9a133b626f5705324c39a3530ca01fae177ae3bb85d82aefe6c725f33","sig":"489dbd17dbb66cf4d00bb1bdedd82274f013a3e6818a830b01d516d18b223155c821cb3afc94182e82c9ae69288182359ac1dfd7806c8d510525acfb23b58823","tags":[]}] +[10:18:49.123] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"It’s the barbarians pretending to be Jews.. not the secular Jew. Look on a map between Russia and Iran… listen to Lord Rothschild explain why the Great Belford Declaration was addressed to him. ","created_at":1759414728,"id":"cd9ead5c04886a5d1420dcba39994e93cae324c48d2fbd2cc29320845dbb3ebc","kind":1,"pubkey":"92aad7891d89ec67d3527ad2d25205a342cb2c121817dde5b0e2f5af2fb37101","sig":"6da4274a7e9a5543ac9e082c9eb45218207b71363be01a7b4e77ceab82505720760a032eb20e933248197e656e8d5c02b10c135224195975f1cc3cb3cbadc171","tags":[["e","f6ef67ae7933574d20a5f250bd15aa8db67e9ad069f2ab300af15ec0ddc6f9d7","wss://theforest.nostr1.com","root"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","","mention"]]}] +[10:18:49.847] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Nothing is forever except change.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759414728,"id":"67a53adeffa49c5a363ee0c629f61377d96becd528305be32afdbb8510f9616a","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"290956e776ec5b0cd3fd01c0ec908feb25789338788af12b0812df733f27e297d9d4ab5d107884e9fb4ed595b26a32fdf84ea77bd8e0a03920f1040db8852c3c","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[10:18:50.464] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"I like this style: https://relay.dergigi.com/c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596.jpg https://relay.dergigi.com/ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855.jpg https://relay.dergigi.com/a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee.jpg","created_at":1759414730,"id":"df791c587da988eb44cd31f556e74aecce8d8c2d6b53989f47a914121382157d","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"db46fcdb7f30ba379cc20601f18e695d33e2936cabd213a9d0ada9c63c926cdc1a6e2b70692e40d05763a492081d0ecc900fbd31e3f29129ee937e7cd4837196","tags":[["alt","A short note: I like this style: https://relay.dergigi.com/c1270..."],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","df0e5049b8d7a9541c196b7ce6930442a6b75a64a12c644bca0a35fd3673785c","wss://relay.damus.io/","","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["e","05caf1dc97bf692e30a98d074f26e4357be3e6454bb92a6877a79fdc851d5a08","wss://pyramid.fiatjaf.com/","reply","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626","wss://nostr.wine/"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","wss://relay.damus.io/"],["r","https://relay.dergigi.com/a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee.jpg"],["r","https://relay.dergigi.com/c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596.jpg"],["r","https://relay.dergigi.com/ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855.jpg"],["imeta","url https://relay.dergigi.com/c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596.jpg","x c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596","size 88478","m image/jpeg","dim 1007x1017","blurhash U29H2__300V?_2WBIpRi00D%?bfkD*oet3fm","ox c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596","alt "],["imeta","url https://relay.dergigi.com/ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855.jpg","x ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855","size 52981","m image/jpeg","dim 1008x809","blurhash #28NnQ~p4oRj00D%4nj]D%p0RlM{oLt5s.odWCRj00M|-:a}xtRjxuRj%M-M%Lt8RiM}M{bJWEt7D*IUbIxu%MxujYt7Rj02IV-pae%1%Moc%MjYx8%1xuIUIpflWEt7j]","ox ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855","alt "],["imeta","url https://relay.dergigi.com/a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee.jpg","x a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee","size 72198","m image/jpeg","dim 1008x799","blurhash #4BM-:_200ax02E29GRk9G~WM}IVayflxtofoeM{00D+~ofl-.xt%Koc%L01%K-:WBj?IpWBRk%M?9RiNHt7RlofRlflt7RiNHoJoJozt6ozoeM{-m%KM|Rkt8M|t7j[IU","ox a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee","alt "]]}] +[10:18:50.524] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":" 😎 \n\n","created_at":1759414728,"id":"fdc39a8a1023a3ba64b69464a3ce12b9230abd5b74591665bb8d0dfcb4db1476","kind":1,"pubkey":"3b1bf4742873980ed62a2190e3b0f69d69585cb9818f70931817bac2c98b1527","sig":"096e438b823b19860f1999510eebabe1e096477feea3a17e2077ea8a95e6d723e190ea724ca93e07c987b2fc49bf1c3cb5ef2a2f0cac0b60259ac39f8a365836","tags":[["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"],["p","3b1bf4742873980ed62a2190e3b0f69d69585cb9818f70931817bac2c98b1527","wss://nostrelites.org/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://relay.primal.net"],["e","4bceb5069b932698953965db6d558d1981a31c2818718856b10e25f0ebbd2cce","wss://relay.primal.net","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["e","ee7f2ff9880ad982bb97d6d151b3e47d64f351a1edac75e9b688613252bd317d","wss://relay.primal.net","root","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"]]}] +[10:18:50.646] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414636",{"content":"I like this style: https://relay.dergigi.com/c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596.jpg https://relay.dergigi.com/ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855.jpg https://relay.dergigi.com/a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee.jpg","created_at":1759414730,"id":"df791c587da988eb44cd31f556e74aecce8d8c2d6b53989f47a914121382157d","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"db46fcdb7f30ba379cc20601f18e695d33e2936cabd213a9d0ada9c63c926cdc1a6e2b70692e40d05763a492081d0ecc900fbd31e3f29129ee937e7cd4837196","tags":[["alt","A short note: I like this style: https://relay.dergigi.com/c1270..."],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","df0e5049b8d7a9541c196b7ce6930442a6b75a64a12c644bca0a35fd3673785c","wss://relay.damus.io/","","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["e","05caf1dc97bf692e30a98d074f26e4357be3e6454bb92a6877a79fdc851d5a08","wss://pyramid.fiatjaf.com/","reply","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626","wss://nostr.wine/"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","wss://relay.damus.io/"],["r","https://relay.dergigi.com/a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee.jpg"],["r","https://relay.dergigi.com/c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596.jpg"],["r","https://relay.dergigi.com/ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855.jpg"],["imeta","url https://relay.dergigi.com/c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596.jpg","x c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596","size 88478","m image/jpeg","dim 1007x1017","blurhash U29H2__300V?_2WBIpRi00D%?bfkD*oet3fm","ox c1270448399cf4f249942aaa805caeea525f76fb85e9c85102721bef80649596","alt "],["imeta","url https://relay.dergigi.com/ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855.jpg","x ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855","size 52981","m image/jpeg","dim 1008x809","blurhash #28NnQ~p4oRj00D%4nj]D%p0RlM{oLt5s.odWCRj00M|-:a}xtRjxuRj%M-M%Lt8RiM}M{bJWEt7D*IUbIxu%MxujYt7Rj02IV-pae%1%Moc%MjYx8%1xuIUIpflWEt7j]","ox ad727e525c918a54fd69012737983201b989ff0d6f872999f7a759d79a0e5855","alt "],["imeta","url https://relay.dergigi.com/a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee.jpg","x a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee","size 72198","m image/jpeg","dim 1008x799","blurhash #4BM-:_200ax02E29GRk9G~WM}IVayflxtofoeM{00D+~ofl-.xt%Koc%L01%K-:WBj?IpWBRk%M?9RiNHt7RlofRlflt7RiNHoJoJozt6ozoeM{-m%KM|Rkt8M|t7j[IU","ox a351431d451839e78697e804d27bd792f822869234c0c1d6d29c388aa7c635ee","alt "]]}] +[10:18:56.954] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Mother Nature is not a counterparty, to consider her one is to torture the meaning of the term - counterparty risk refers to exposure to other economic actors required to perform\n\nMother Nature presents risks, but they are “acts of God†in the law, for example. \n\nAnd again, savings is not an absolute sovereignty thing. It’s a spectrum.\n\nIt sounds like you’re trying to say the only thing that can be called “savings†is something that is absolutely risk-free. Nothing, of course, is totally risk-free. And the existence of risk has nothing to do with whether something is savings, just whether it is a *good* tool for savings\n\nYou hold your gold, but you have risk that someone will shoot you and take it. Your control is contingent on others’ respect for your property rights. You can be secretive about the amount of gold you have, but only until you spend it. Then, you are relying on the other party’s respect for your property rights - that they don’t just rob you. \n\nI concede that gold has different trade-offs that might appeal to a particular risk profile, but I would be a little silly to pretend that, because it isn’t my preferred savings tool, it *isn’t* a savings tool at all.","created_at":1759414736,"id":"9adb5f93a82c1dcf930773c52438e83e1194d80e14b13462fc733b6a7a8efcbd","kind":1,"pubkey":"34134b9e1cbb322582bca4020a39cc1256036d1f5e98effcc838b421fc209d48","sig":"53a8f416f5054b385faa52464c17520bdacc93908f54427d4b67b7bfd9c39b60a1c9d6b33e89cd37764eba3e8818262993e934362c45c720f6dc7357f248b5b9","tags":[["e","2e8ea390eb5a48e3e8c0f64c6e0d02c48cfc24111bc5bb6b9beec92749da5e70","","root"],["e","127c5bc4824c87c625f60f700c1e049671dc5bc705c0f0549e2f43043ae72a2a","","reply"],["p","f5b55f6b44b8997b2b6e8469a6a57f8d3f3b2ef27023543445c40ecec485ee64"]]}] +[10:18:57.015] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":" \n\n\n\nhttps://blossom.primal.net/3f0dfa91c2a940b6f8341019053825c0599c5598a543c94f41649a9ebda2c85e.jpg","created_at":1759414734,"id":"4af0b28caeeecfb35acdfaee5d16dcb7e5136d274b595c6c85262c7d646bcfb3","kind":1,"pubkey":"17b357b6804da0b801d88e123da096a43f82fad33dfaa0b34399050dcfe1dc9c","sig":"8528ef88d6b413f200ac7807061d143a6a110dea7c3b195296c7ac9004479eaa692d4ae56d29a030b6dfd972db7099053a779f81041d8d92dd4b0f00a5c3bde9","tags":[["imeta","url https://blossom.primal.net/3f0dfa91c2a940b6f8341019053825c0599c5598a543c94f41649a9ebda2c85e.jpg","m image/jpeg","ox 3f0dfa91c2a940b6f8341019053825c0599c5598a543c94f41649a9ebda2c85e","dim 750x1000"]]}] +[10:19:01.534] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"特別美味ã—ãã‚‚ãªã„ã‘ã©ä¸å‘³ãã‚‚ãªã„ã€‚åˆæ ¼","created_at":1759414741,"id":"7b1feb359fb1e5d4bef2e5d1a8c3276670ab1d793add5a4afc149f62b72bc724","kind":1,"pubkey":"a5d343c36c492abdf3e58b47b451d2dce3cd3170df4413c6f493eb9591c2f261","sig":"decc843121d9da4d980e403ce38af237aa13866dafb21d9f463c04b16f598774634a27205667d09ab6d030cfee922c7213d241341271e6aa1ce93fb38854c583","tags":[]}] +[10:19:03.149] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Why Verstappen won't do another Nordschleife race in 2025\n\nhttps://www.the-race.com/content/images/2025/10/NLS725_091311332506951PK_PK.jpg\n\nFormula 1 world champion Max Verstappen will not race at the Nordschleife in 2025 again, and has some very clear conditions for racing there in 2026.One week after winning the Italian Grand Prix in early September, Verstappen earned the licence needed to race GT3 cars on the legendary Nordschleife circuit and, having then won F1's Azerbaijan GP, last weekend Verstappen won on his GT3 race debut at...\n\nRead more: https://www.the-race.com/formula-1/why-max-verstappen-will-not-do-another-2025-nordschleife-race/","created_at":1759414742,"id":"9abf3faf4b823056085b83e1515648326485509c9cb94c283eca66f314805a24","kind":1,"pubkey":"a81b3bab9dbc46a253ab550e002c51b0cae095182278d4f082d94bce949e69f1","sig":"1cd727f678d13417c35d4a4244aae3dd4e31a8543400987b4cbe122f083963ce785090ebcc9bae7d4c5124749300f9eefa0174c9c87a8e0f43a45f6f2fefa8f7","tags":[["t","sports"],["t","newsbot"],["t","sportsbot"],["t","rss"],["t","the-race"],["t","f1"],["t","formula1"],["t","f12025"]]}] +[10:19:06.765] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Impermanence","created_at":1759414746,"id":"dd6069f115479d1df52a5586d6e2fec5a90cb9d6219c3a3273d07aea7c0de0bf","kind":1,"pubkey":"10cb23d15dc12bc47f7e988825b3853f394dfaa151302b8155f8b66c83cd9b39","sig":"95dffff6fc54ebb9288cfad886a9c7d0719adfe89ac66481508960fa09a1336bd2a51d6f834c73c88974b96aece94315362efb8fe549e641749fb96506527efc","tags":[["e","67a53adeffa49c5a363ee0c629f61377d96becd528305be32afdbb8510f9616a","","root"],["p","5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414"]]}] +[10:19:08.064] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"英語ã®ã‚¹ãƒ©ãƒ³ã‚°é›£ã—ã„…","created_at":1759414745,"id":"f821eed29ce0d7b3387cc996d23577ff69bf934582a4b1c0f1a22fc22a3644ca","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"636db61331fd86fd89c734fe7a89b6efe24d2f14f8350a962c3f56052ddb56218690d1a2f04e55400bdd459285f230606afe2a540ea8e9b87b00922da3dbed07","tags":[["alt","A short note: 英語ã®ã‚¹ãƒ©ãƒ³ã‚°é›£ã—ã„…"]]}] +[10:19:09.822] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Thank you ✌ðŸ»","created_at":1759414748,"id":"6cb5c5a70896ccc8142a07c6eb02b925d729b25c1da4e02f3c8d4d3f4aba7f8a","kind":1,"pubkey":"93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a","sig":"96a8fb66fc8068de53a9b7ccb0ccc386b33f9392dba98b6fb91b8f39bb8fac968b31c00b987a230367c2a9b6022d2886990c4a4ae8e1b9f70e511672a3b09bc9","tags":[["e","76df1e1817d023d1a73a7c2e860d9f6d3a030bd724a65f6f4034a17a927be964","","root"],["e","bafc8eb0b11503610e90848bc44a2748ccee08e6a6c429ce245a9bc139ca7c68","wss://relay.primal.net","reply"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed","","mention"]]}] +[10:19:14.197] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"It's gonna get worse 😂🫶","created_at":1759414754,"id":"3b9828101045bab5129559b140b0c5d1f917826be29a147014a2d85c46eff0f4","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"aa973850a8736b0a084862a88d5b16a0ccf47f078898fab90f99034ad589e3402bc3576896a8bf41c3b4e04af44508f2efed365a6cf37ea7dee86af207f846db","tags":[["alt","A short note: It's gonna get worse 😂🫶"],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","eba81caaf18d6ff398805af9cdb1e81b8633bd8fee06c6d94c0feb12be884692","wss://relay.damus.io/","","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["e","7a30bbaacbbbc8ffffba533759732354e307e84c1c52e5e34cfc21fda0b67587","wss://relay.damus.io/","reply","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626","wss://relay.nos.social/"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","wss://relay.damus.io/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"]]}] +[10:19:14.479] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"FG Nexus, a Nasdaq-listed company with ~$208M in ETH, is tokenizing its stock on Ethereum via Securitize! 🚀 Investors can convert shares to digital tokens with the same legal rights, settled in real-time on a regulated platform. A big step for TradFi & DeFi!\n\n#crypto #blockchain #news ","created_at":1759414754,"id":"3495ede50bd254ca042e9a5d25e17d71c96c8c0dc18adb0305d5d1b8ecf52821","kind":1,"pubkey":"4e9a4f3335f19d04009dbab6d1e3af584777e2abe506867e7c20f79ee0e9b4e9","sig":"319bb0340009408c44be4b126fd826afda6d7b3998c44e3b15720579ab75bb00155936a2bb7c209bd615333fb3571880782e630a45723cd50e3710f708134f72","tags":[]}] +[10:19:14.526] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414636",{"content":"It's gonna get worse 😂🫶","created_at":1759414754,"id":"3b9828101045bab5129559b140b0c5d1f917826be29a147014a2d85c46eff0f4","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"aa973850a8736b0a084862a88d5b16a0ccf47f078898fab90f99034ad589e3402bc3576896a8bf41c3b4e04af44508f2efed365a6cf37ea7dee86af207f846db","tags":[["alt","A short note: It's gonna get worse 😂🫶"],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","eba81caaf18d6ff398805af9cdb1e81b8633bd8fee06c6d94c0feb12be884692","wss://relay.damus.io/","","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["e","7a30bbaacbbbc8ffffba533759732354e307e84c1c52e5e34cfc21fda0b67587","wss://relay.damus.io/","reply","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626","wss://relay.nos.social/"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","wss://relay.damus.io/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"]]}] +[10:19:18.287] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🔔 Hrozil výbuch. Ruská ponorka se musela vynoÅ™it u Gibraltaru, odhalila tak svou polohu: \n\nVážné technické problémy spojené s únikem paliva do vnitÅ™ku trupu pÅ™imÄ›ly ruskou ponorku Novorossijsk k tomu, aby se vynoÅ™ila ve StÅ™edozemním moÅ™i nedaleko bÅ™ehů Gibraltaru. Na incident, o nÄ›mž původnÄ› koncem září informoval telegramový kanál VÄŒK-OGPU, nyní upozornila stanice France 24. Ponorka tak nechtÄ›nÄ› odhalila svou pozici, její nynÄ›jší osud zůstává neznámý. \nhttps://www.novinky.cz/clanek/zahranicni-evropa-hrozil-vybuch-ruska-ponorka-se-musela-vynorit-u-gibraltaru-odhalila-tak-svou-polohu-40541692 \n#CzechNews #News #Press #Media","created_at":1759414738,"id":"8888ba20a2bea773cb853ae719a12e5d84a48a9012af1ba3c1d1753de8c20c8c","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"ed508d33dc973ef043a1938db9750fabf677a2c1a6eb9d2c424f3b12b76760d9ea4d1d352455cb632a3beb8e8afdb69d8eb1def1101ca62e214c914981c34e0d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[10:19:23.660] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Thanks for the feedback! Hopefully I'll find out some more real soon :D","created_at":1759414762,"id":"d3f4d22363e38c35a5fe0b6182228fafd356ee19845e3c69e573b30d3679b348","kind":1,"pubkey":"079d727bee3d805e24758861ea4d028b2e6a37805f8db45bf8045bf900099650","sig":"a7b9440aa31810506d5c84ce92a0533d36ead69ef0889b9c4d966c95517daebe9dc106c4a42333d09f3e75aafa5a7295c4c4df9e34788d3ad09e801996df35b4","tags":[["e","d80eb5cf50bab8d2502eb3b99e82e80ebd71cbc3d1f4b4ae52ea3d63126d2417","","root"],["e","0733af223916aee3b7525fb4148a90cb026b59454f8c1f36ca8d73c8d25809dd","wss://nostr-pub.wellorder.net","reply"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78","","mention"],["p","16ca6c686deb95336ad892d1128b0f144c61c64040571ced248d133f454a72e6","","mention"]]}] +[10:19:27.260] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"熊ã¯?","created_at":1759414766,"id":"db5d5861fa8d95c1c08ca7df1d50fef59e044a75d2dd24ff58530865df7dd577","kind":1,"pubkey":"1066a05d1474e7e133a97208a5cb177a9c01e4b81f0f14370ad59f4a0a475681","sig":"7f87e0fcade8d3f5ba1d695a803b64f94e113da9eb149e38d0cfa7ec92350a55cfec81107d426bb46c0c5bb016c8b45c1050721c239bc114e4f337582bce359e","tags":[]}] +[10:19:27.473] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ç”·å‹ã ã¡ã«ï½¢ã­ãˆåˆ¶æœè²¸ã—ã¦ï¼ãœã‚“ã¶ï¼ï½£ã£ã¦è¨€ã£ã¦å­¦ãƒ©ãƒ³ç€ã›ã¦ã‚‚らã£ãŸã“ã¨ã‚ã‚‹ã€ãã®ä»£ã‚り男å‹ã ã¡ã¯ã—ãŠã®ã‚»ãƒ¼ãƒ©ãƒ¼ç€ã‚‹ç¾½ç›®ã«ãªã£ãŸã‘ã©","created_at":1759414767,"id":"ab28d0da99767ff0d79ecef66686a55218a864e253972b6cfe6de39ea8085f52","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"b743c53dfd8bd74cea02223604fee5dc428e3eb59fcac383b15839ccd496f5b34ed6f8d731e96693e5b94ac7a42968583d629c8945d01d6bcb9787435ec91990","tags":[]}] +[10:19:30.537] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ã‚ã‚“ã±ã‚“æœ¬å½“ã«æœ¬å½“ã«çµ‚ã‚ã£ã¦ã—ã¾ã†ï½³ï¾žï½§ï½±ï½±ï½±","created_at":1759414770,"id":"64eca5b83c4b41fa494cbac3ced370035b8a3eefb60cfc8942bbefafcffc8f81","kind":1,"pubkey":"3e3a8a4245aa0822c050c42de0b17d0fe30d447cea0e6087e55b678851ed0373","sig":"385a33d13cde83798372bf94fe3454f47612ce86cb7971c714ca346e35f29db2c5521ff3aa21bc84f920e641e4c900e4e3c98053691e69c97550a3f3b6782053","tags":[]}] +[10:19:33.142] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"GM 🫡","created_at":1759414772,"id":"99eaa7b807aa2950f1655ae32f2158440c3283d2a9d5b37d514ac049380c4767","kind":1,"pubkey":"ff2f4cd786e42b4323749c91517ec7baf22dfd035b7a101bea83b6e2bcbacd15","sig":"b1c3149000a45a3c906c4900b42174024ea4a464c5d3fc7d963bcf00502ec32d9cdb4a09c3f8dd807f03960bef0120186a03b96590cfa0451637eacd316049ee","tags":[["e","a3a02abd8d530857a8014bf0473eaa0fa3e18094984e519e392183c733e2993b","wss://relay.primal.net","root"],["p","3bbcab7e3d2b07a55027206d5e193813f01406882daad05412389a50b67ba92e","","mention"]]}] +[10:19:37.228] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"https://music.youtube.com/watch?v=mKpsuGMeqHI","created_at":1759414776,"id":"10bc815514e532fcb214c325dd4f3137c30ffd1d8a9fdc86b528faf585c7267f","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"2ea3dd0fd91a89aee8e68f6195fd48cea5b9a8e6d4059bc225e443a43e618cfddd869ef35ffadd20778881af0af539d470bc9cb29322efc9d43ed35aaba94d4c","tags":[["r","https://music.youtube.com/watch?v=mKpsuGMeqHI"]]}] +[10:19:37.448] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"æ–°è¦é–‹åº—openingã®ãŠåº—ã®ãŠèŠ±ã‚‚å…¨éƒ¨ãŠã°ã•ã‚“ã®ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ðŸ›œã§ãƒ†ã‚¤ã‚¯ã‚¢ã‚¦ãƒˆã™ã‚‹ã‚ˆ","created_at":1759414777,"id":"a73b4e4816dac8ca8af6c15a0f1820d83ed53f1e3be2c6878ddbc948e7f6eeec","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"e433a0599ff1d418f4cc5987717692b70b0f9c5591b1fa13bb9774b2c60dc1579f245e9c8a425a7a18338cf918078ec229acae37a72ffb9f27e3348d90b3c079","tags":[]}] +[10:19:38.879] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"It should be fun to watch!","created_at":1759414778,"id":"f1e2c5415067f5c1fa3eedd8712ac8a6e7cc6216f5f9bd08cef7532d3b1b9832","kind":1,"pubkey":"3bbcab7e3d2b07a55027206d5e193813f01406882daad05412389a50b67ba92e","sig":"672863d8330427215da3550379ae833149b61da5e524e3b14878b02a5deeb6e10ff4e85375265dd0ad01e161de00467b9a4a5a6a5765201b9f191ba9fb132997","tags":[["e","a3a02abd8d530857a8014bf0473eaa0fa3e18094984e519e392183c733e2993b","wss://relay.primal.net","root"],["e","bd3efd64b9d620a9ff0c88765a91454d9a36cfaa828ba4ca76a5293de8e3da05","","reply"],["p","175aedd73c09740d820effaef13abf59bf1c7471ca69c4f460d622e88fcdd426"]]}] +[10:19:44.914] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"The USA is still the freest county in the world. You have the freedom to chemically castrate yourself and become a tranny. You also have the choice between Pepsi and Coke while raw milk is illegal in many states. An 18 yo female has the freedom to sign up for only fans to get fucked on camera. God bless the USA. ","created_at":1759414784,"id":"3c859757bb490ab5b80091784347a87b407fb78e6916e755b48b5d437d8dfc26","kind":1,"pubkey":"43b8cd4972f7248d0321bed50528f23c1823a0d8614d82cd3344f2433e4a7831","sig":"a35e76f3557fabafd502b1f35aa325f650097c604c82e4674ce83af1d57dd4f3e0fdabc8fbfde1366c98e0d65d4213953f34eba0c33dc89865b4eeda826869b9","tags":[["e","362cb0c9013f50aadea8ac85fe5e7e9b792061f500796c0eae17f2e8f75d9df7","wss://relay.primal.net","root"]]}] +[10:19:44.975] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"#CAR #Selfie moment 👉 🤳 Taking on the world, one drive at a time 💪✨ #LoveSelfieCar #SheDrives #BoldAndBeautiful \nhttps://images2.imgbox.com/1c/d0/KgceXZA7_o.jpg \n\n#cars #carstr #race #speed #drive #girls #racing #motorsports #ferrari #alfaromeo #bmw #mercedes #bentley #bugatti #lambo #maserati #suzuki #vw #honda #landrover #porsche #sport #hotGirl","created_at":1759414784,"id":"f8a3ea0ca654f8a57c1a305ac8c9bbaa931d45d60cadfac5ef0e8ea3e0358e75","kind":1,"pubkey":"df3b8a381175e0382a31e46c0db01c178af78aff8e17964be25a0b2740ca8150","sig":"e624b63c44c455a14eb3732b1b3d8c412eeef1b4dd234c13f4ba22e0a4c8898e093a9b95450fa496ad7ed644af7d71ab1ace8185e739d793133e54f9049a560c","tags":[]}] +[10:19:46.599] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ã“れãŒEAã®WRCã®æ–°ä½œã§ã™ã‹ï¼Ÿã¨æ€ã£ãŸã‚‰å®Ÿå†™ãŠã˜ã•ん出ã¦ããŸã€‚","created_at":1759414787,"id":"f2ac7cca79be669749f2a5385e625ee3806d8e117fe902b28acd9581ff570ee8","kind":1,"pubkey":"6369fb82bec54226bf09bb365b6f0d71b16c41f56e7edfd4f97de23f9c3281da","sig":"7f97776a4bf00be2f8a1c1154749263fed58c4c0bb0c0903245269ba153f53f28ed920384012a81a1ae524386dd4b327ff74a9a668335e4277572a22d2734754","tags":[["e","f56e28b5dbe52d851bc2a114b4354f35139ad533e4b749f62f8a344bfba30624","","root"],["p","59317d32e89cbd5fb7e5f8e16bbee29e35f12b4bc6561c9a691cc068af0dbfbd"]]}] +[10:19:46.880] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"👠Adventure awaits, let's go! #carstr \nhttps://images2.imgbox.com/18/83/DdukHyCT_o.jpg ","created_at":1759414785,"id":"f1410f745b32e111e7546a030d9975f73773782ce685d1d5a41a9e8bd0fc4e17","kind":1,"pubkey":"df3b8a381175e0382a31e46c0db01c178af78aff8e17964be25a0b2740ca8150","sig":"e9a7a5d2a4badc9d317a6ebbb78d5219cfc81eef81849f1e803bf4adb6b16c9da8d1725d0e2b981108dd7650db37d672e2b71b64c9fc8cb32b1a94013413989e","tags":[]}] +[10:19:46.987] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Yes he did, yes he did…","created_at":1759414786,"id":"eb88a605b1c952cc15d668b19f383e2ded841502b7c0b05acf65d4451cf186a9","kind":1,"pubkey":"68b2f625d84c64027f61fb384e0eae06075951e260b79f4f0262c4946c79bfd3","sig":"4bfa703dc89cd7bf0d1255679c9100338dd2a44fa3542c3af05eedc6518fbeac1ae435944c9eb705c8538c54ac129db5884aa799b359c2537d357fb2d3999f9a","tags":[["e","adea3c5b7ade308d16ca63471a6884f8b9912f320ae691c82bc36b8223a1929d","","root"],["p","29904dc1dc3101581a87ccd2b2e35dfa07bf2bbafe2e1feea390916ff1332910","","mention"]]}] +[10:19:47.268] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Windows update strikes again\n\nhttps://www.vaughnnugent.com/public/resources/downloads/cms/c/lgk2rfyso7kjb4oijgxwynvwlq.png","created_at":1759414785,"id":"772736ff4d4e5eb22aa08dc0c4265b3d2530756daa457c4ac3395a64355e4db8","kind":1,"pubkey":"036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","sig":"4a62672922573fcce1186a5d5d782f9fd822848b2ef5daac8cf1cb7b44285c504b079d9dd9b6f410da3f1eeec34e16d6ede344e5cf03fb4f4ea2ec9f3b6aa18c","tags":[]}] +[10:19:48.104] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"犬ã¨çŒ«ã¯ãªã§ãªã§ã—ã¾ã™\n熊ã¯çŒŸéŠƒã§æ’ƒã¡ã¾ã™","created_at":1759414787,"id":"93e566a62ce3c97859318e4ac72a272da9d5433386222deeaab85f292894f803","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"0105836c1deb770c614ae34578fd09a69bb1babec4e105384f0a7708e7afd02fe6b6c600ff3055d82e11afb3f4d947ed06a22f866ef0c32590c02fc4bf3517a0","tags":[]}] +[10:19:52.150] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"More and more Israeli evil attacks. More i start believing that hitler was right","created_at":1759414791,"id":"81636303ad3e5fc8c37466e3b66edb256f299b1e2ec73df29dd310d1cc059e56","kind":1,"pubkey":"86de635357aa113f6455e6a30bb75c8708c0005555eb47fac282f8b2da63595e","sig":"8fe3759686be845d8c31a1495e9dc6d7f4747b08bfeeca3379f8d9d21a80daa2756cac4d14e25d77e05028002ff75e0db7ddac1f2576ae889da407424d86c2d6","tags":[]}] +[10:19:55.100] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Definitely. It would be great if the best features of all clients were available on all clients","created_at":1759414794,"id":"eb6c457981aa99a3a2d58d581ca13169a0c3ef10f6344dcd597627a66decc4f2","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"f86ec3d67262c66b5a8e45d6257e41fe1e317d22333527601513e202e95739b09cf32f90b45c86a1486aec4e9c97cc33b6e3486681c48ce260064691017a7c35","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root"],["e","75ba53e6de043c6055bc4d7d10d04aef041456e6459a5536fdac1d445a86fdd7","","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:19:58.371] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Fiat is an ouroboros eating its own debt. #brokenmoney \nhttps://blossom.primal.net/a65d14b757d50a3b36b5fd0639cf97b6fe3c6855a16356b6ec5203d579895435.jpg","created_at":1759414797,"id":"fbec9cf180ce7834ac0dee71b69a410c7c14538f5ebf5e25130ccb7af3fc0072","kind":1,"pubkey":"cc601241479e55bcc2860ae633a97bf6d1712109953dc32e76efd80d181cd0d2","sig":"0617d8a6acade96c5385bcb84addfbc31bc861f1335e2f2c4043129c117811edcb81267bd9bcb778222796b07c697c60b5e7f757c0eef846c10cb829828de0de","tags":[["t","brokenmoney"]]}] +[10:20:00.424] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"✄------------ 23:20 ------------✄","created_at":1759414800,"id":"913bc7da0fd1db5707df9fda82be2dc16774f420173f19bb8103450c7ee93a36","kind":1,"pubkey":"b0c8af215af765a124c20c6e37b481df0b6c5e406f967c3d04216bb1843174a6","sig":"090e79f3d7a0c61b89f8c855c42632da0e7d5a1af3202dfa7ac0f5a6060df69aba106317a84739cc80eefe1c94cea8c7efa9be944f34521a8c673d7fcbaad3e3","tags":[]}] +[10:20:02.698] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"戦闘ã ","created_at":1759414802,"id":"473fa22161b91a15b21c9d9995d0ce5ce8b5b38f4d387343f0b72c92f009675e","kind":1,"pubkey":"5b9321f039b6d4bfa4afbfeba816c7fe486c0322894f52fe026e9ded1fc36a4f","sig":"e0d864d2a8e60298e70f1ec3857db333bea6c4de2a60aba979d511eaa52c246c2615a3a873fb46c2ad1db059027387c60f5e7f28f99e951e66f1c1a608f59e50","tags":[]}] +[10:20:15.375] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🔔 Upravené ruské rakety unikají systému Patriot, píše FT: \n\nRusko modernizovalo své rakety tak, aby se pÅ™i úderech na ukrajinské cíle dokázaly vyhnout americkým systémům protivzduÅ¡né obrany Patriot, píše list Financial Times (FT) s odkazem na ukrajinské i západní Äinitele. \nhttps://ct24.ceskatelevize.cz/clanek/svet/upravene-ruske-rakety-unikaji-systemu-patriot-pise-ft-365660 \n#CzechNews #News #Press #Media","created_at":1759414795,"id":"3ff7925aa50b41eb00d81d28202dc53fe492f6924f119f08cb506d7d564e6e82","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"8531ef52aa199012dd2f83405ca1b6325b6fa22dee81aa854ec806a1fe1db6510680307ad12897b4d2d5574aa9fbad2fd84d5fe0152f359d873b20ac06e67aa2","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[10:20:15.436] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Zap attack accepted! Thanks, you're shocking-ly kind ⚡💥 \nhttps://images2.imgbox.com/df/92/alESPp4F_o.jpg \nhttps://images2.imgbox.com/a3/d8/EXQNAfKw_o.jpg \nhttps://images2.imgbox.com/da/41/ZzPfCSqB_o.jpg \n#muchlove","created_at":1759414814,"id":"b32e384760a65b4edf2afa86681b1e402b6a2a29c2501c799378efd9367b1ad5","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"47d90aaa5f1b625cc69539a8d48933539fa67891f8e23904882fad1ff0de51752de89fe40a07c54f4bec311e1a0c93f983877f3e101adca8fa457f4c523ac3ce","tags":[["e","a1d62546b7f7d20c08639817482bb9f014fdbb5b40c006f724a9c83df768eb19"],["p","ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f"]]}] +[10:20:17.266] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"黙れ","created_at":1759414727,"id":"a5fb140217cd29e1b0ae958af70faf3b2ed080278bef8576aa9f5a556390264a","kind":1,"pubkey":"2d417bce8c10883803bc427703e3c4c024465c88e7063ed68f9dfeecf56911ac","sig":"e62e19afa7827182a7745f376e26ffe739b8420f75b66a5899ad1a762255b8bf47c4b46e19d5b146f3db8a433a71850753de577ec1d96eb992a5abe7e6b1fc27","tags":[["e","9e7849acdd6cfe0f571a2310a8cf7782e88a262a54387d3996a68877e6aa0feb","","root"],["e","8117807d78650c3665b7eb1cc1de21cffb359b4d08486f1f713582f361e68512","","reply"],["p","274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0"]]}] +[10:20:17.327] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🤗🤗🤗","created_at":1759414816,"id":"2941052634d9db0b972856f2aa61e875798aa1b7c9234a449421d7666200b838","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"8e1eaabe789c5ebf1f47089fe38c01ab87051fe690ddfeeda11aeeeabe6777eba6ad3a5dc4cbabd5cf9e2255fcac604febd0e0193b1dac6d0ed6e3a406ade760","tags":[["e","9e7849acdd6cfe0f571a2310a8cf7782e88a262a54387d3996a68877e6aa0feb","","root"],["e","a5fb140217cd29e1b0ae958af70faf3b2ed080278bef8576aa9f5a556390264a","","reply"],["p","2d417bce8c10883803bc427703e3c4c024465c88e7063ed68f9dfeecf56911ac"]]}] +[10:20:20.043] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"👉👠Thanks!⚡⚡⚡ nevent1qqs2r439g6ml05svpp3es96g9wulq98ahdd5psqx7uj2njpa7a5wkxgk3ffha","created_at":1759414818,"id":"819eb4a79a2f3dd7b390c643c53f019af263556a41b44c4427089e79e3729480","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"9c4c3a06023e72f0dce84ed6a7ef7297697088607ee016623f8e242f807f51b00bf5daaedc991f12b23be34bca96ed71bbed090e94359c07028f609a3c33cf6e","tags":[]}] +[10:20:24.639] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"H/t nostr:npub1a2cww4kn9wqte4ry70vyfwqyqvpswksna27rtxd8vty6c74era8sdcw83a ","created_at":1759414823,"id":"9a0f7a1077d4431cdb3434071efdd9fd1fab5a40bb6dadd706c5bf1a22f1b6ad","kind":1,"pubkey":"cc601241479e55bcc2860ae633a97bf6d1712109953dc32e76efd80d181cd0d2","sig":"f1041f894d1f5834619af3869c26ce85ef37a922ca1db885212438cff6e0427303eb1a2f2a474122cbb686982aee045b87fd0194578af2177ced94deae963a41","tags":[["e","fbec9cf180ce7834ac0dee71b69a410c7c14538f5ebf5e25130ccb7af3fc0072","wss://bostr.bitcointxoko.com","root"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f","","mention"]]}] +[10:20:27.909] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"人家ã«å…¥ã£ã¦ããŸç†Šã¯â€¦ã‚ã‹ã‚“ã‚„ã‚……","created_at":1759414826,"id":"c446ba667fc05cba1a18dc3439ed26729d7c1090c60d633bae6d118f04223f31","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b95ec74686c1a4e30ec07bc18c330a9d2d2c4d778ed5b1eba9b4cb2501af62242332d19cf914bdb1a6fd6bc3db0f7c21b84bad7a5e8617c7c6b67bea9e6e7607","tags":[]}] +[10:20:36.711] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ã“ã®å‰ãƒ¡ã‚¿ãƒŠã‚¤ãƒˆã¨æŒ™å¼ã—ã¦ã‚‹å†™çœŸæµã‚Œã¦ããŸã—ã€ã‚«ãƒ¼ãƒ“ã‚£ã¨å¼æŒ™ã’ã‚‹ã®ã‚‚検討ã™ã‚‹ã‹","created_at":1759414836,"id":"dc0dd80cbab0505985cbf66c0d6b95cf7d4860e34b5f28df29037ba92d8d7880","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"9ea70d7e30023886a0211d63adcb91f251c0ce5e5f101e040e06dbab5b75adb22bd8b92d3d188468d7de18087aac28e3fcc70323b5bdfa255df3fc31063f0a25","tags":[]}] +[10:20:47.839] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🟥SELL BTC for GBP\nPrice: 86468.26GBP (-3%)\nBTC: 0.018 - 0.035\nGBP: 1556 - 3026\nMethod: Faster Payments\nCreated: 2025-10-02T14:20:12Z","created_at":1759414847,"id":"701c8f1b1ba5da494e23521ea486ac358afb066e7c5871d3060fd20920238dba","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"3231d59061585a1d528961670779c2afe5f20bdc8fdf16bcd03b3e91a19324d96b702b58e97976d2bde2b4a0454f236ada16315f83f78ecf09e2b81569b1fdca","tags":[]}] +[10:20:51.108] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"The USA is still the freest county in the world. You have the freedom to chemically castrate yourself and become a tranny. You also have the choice between Pepsi and Coke while raw milk is illegal in many states. An 18 yo female has the freedom to sign up for only fans to get fucked on camera. God bless the USA.","created_at":1759414850,"id":"bae7e853447492faddb92494e531b7fec91d02f73c89d4e3d27849d85bf8a1ee","kind":1,"pubkey":"43b8cd4972f7248d0321bed50528f23c1823a0d8614d82cd3344f2433e4a7831","sig":"7b4cf785fe2eb4f5d18b04279d5ddd3305ef6f8a78523c52832c21063d2198041f25ad2a99da3a694f72c0230a35135752f96733df24edf9fc5536d47ea63e2f","tags":[]}] +[10:20:51.833] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🚨 The Satlantis team is heading to Madrid! 🇪🇸\n\nWe'll be at nostr:npub1watch0u2mlgt2p9g73sltzvkntuyeln86fpkyxzugfamn5nvc6zsmcfpwx 2025 this weekend, connecting with sovereign individuals, freedom advocates & Bitcoiners from around Spain, Latam and the world.\n\nIf you're attending, let's meet up! 💜\n\n👉 Our Head of Growth nostr:npub138lktp328xjqvs45zysswzjxu4gxj58uypmlt486nxhek3dry8vsf3zeru will host a workshop about Nostr & Lightning with nostr:npub107jk7htfv243u0x5ynn43scq9wrxtaasmrwwa8lfu2ydwag6cx2quqncxg and nostr:npub1fcthj78n5re7dcyrva89gmvgz0z6g2v5rakr65shxemyvjwwdjzqcpeavj on Friday.\n\nðŸŽŸï¸ Remember that the code SATLANTIS25 gives you a discount of 10% for the Normal and Running tickets.\nhttps://cdn.satlantis.io/15xd2mmjnh3caykh77djsv73e0zkrp42jp5mwerx8f4m6su40wdvss7t3l3-1759414849305-cff5935f-e05b-4cd9-a121-1c307ec37bbf_71cf2fbf-88c0-43fe-9c04-3c8b1d8bfcde.jpeg","created_at":1759414850,"id":"16ba7bd40ee43a716713f573dd184f36cf2afaa69bcb38d0ec79c5ac3a67de0d","kind":1,"pubkey":"a19aadee53bc71d25afef365067a3978ac30d5520d36ec8cc74d77a872af7359","sig":"51910e5f19989c9dd066d7a3ae707cf02667afaf5989388217796d84f36d7f2281a385eb666804111709644a3cf331d286cd92e379d14baa0dbe27085c8de17b","tags":[["image","https://cdn.satlantis.io/15xd2mmjnh3caykh77djsv73e0zkrp42jp5mwerx8f4m6su40wdvss7t3l3-1759414849305-cff5935f-e05b-4cd9-a121-1c307ec37bbf_71cf2fbf-88c0-43fe-9c04-3c8b1d8bfcde.jpeg"]]}] +[10:20:52.129] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Your posts don't seem like they're meant for the widest of audiences. Follower count, shmollower shmount","created_at":1759414851,"id":"c3cf67f106573e824034a8bd3f90eacfecf49c9a0fa99238be973b1f63e7c1a4","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"2711e5637e8b1cb2384d8d2abe9b589d11434e9a766bcc0f3ffb436834d1b1e3da407ee04fcac069106a7f6e13c01cd28909269624e8403e29d09752d82c1f06","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","","root"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"]]}] +[10:20:53.186] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ãƒ¡ã‚¿ãƒŠã‚¤ãƒˆã¨æŒ™å¼â€¦ï¼Ÿ","created_at":1759414852,"id":"41d976f9759804800f70f7f54916b168ed459406cca5df5c00197067105a139d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"de4027cdc880f04f5f0fad88a5943fdd99a2f9624a52b023caafa6f3af0a1a0348b554089cc3d810a62fa3352135097e42167a6a43fffea5a26c408f70c9d346","tags":[]}] +[10:20:53.800] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Thats sick!","created_at":1759414853,"id":"d3f602c8f32acbc70d0559dfe3c87a11d9ee0757fadaad2a5cacdce22b87cfee","kind":1,"pubkey":"d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","sig":"28767caeb4764492fd8308aab5c370523214571c0c6011db360ebe6c4d44d5854d2efaa5f918e0b3660a328dc1c4281f38ddd76ce86dfd8dfc797a5cef818e80","tags":[["alt","A short note: Thats sick!"],["e","a0d77d2a135dc9c3a117ab3883d38cfe8c28ce8fca6e75c210cf881ce0f0336a","wss://nostr.bitcoiner.social/","root","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[10:20:56.233] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Claroooo gm","created_at":1759414825,"id":"97e86a01133b11a030bfa73211a21105be4a3a7d0b7c1971fa8dd78dfbd35d5d","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"8c1a7bd317e07366ab707509f2820ffe6bc3114aec85344ba013481ca190ca69d4c17099816f2ea716a22c5b985acc007fa72e9643e40ebb8666fa61aa656d74","tags":[["alt","A short note: Claroooo gm"],["e","827bf81a700366c7b53b216d8870b506117ae6899e75206cef4a031fb891c7aa","wss://relay.damus.io/","root","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.nostr.band/"]]}] +[10:21:06.595] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"BO7ã£ã¦ã‚‚ã†å‡ºã‚‹ã‚“ã ã€‚","created_at":1759414867,"id":"3bf0e3e7b80401dae94889330acda168884b76e2ec438ddebebc1726d228b129","kind":1,"pubkey":"6369fb82bec54226bf09bb365b6f0d71b16c41f56e7edfd4f97de23f9c3281da","sig":"73624b467fa8176d1b8d61c0b0beb8a2c10ee697b591566d228485ee73fa819f25864edc8c600d86e43bd63522dd6c721301532d722a4e4e84741b5a8323e2bb","tags":[]}] +[10:21:08.759] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"I’m old. \n#throwback\n\nhttps://image.nostr.build/dea5aafc99d45333de7e843f8a3004675034cf386e9f5785eead3f459f903e55.jpg","created_at":1759414868,"id":"2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"024e66633ec41e290752d61867f32048a543f74507d27b60f961a69083dfacb2fa6d125af189bb80119db3741a5c360aeaf2125310bb3fed3dddedb5ee59c79e","tags":[["imeta","url https://image.nostr.build/dea5aafc99d45333de7e843f8a3004675034cf386e9f5785eead3f459f903e55.jpg","blurhash efH.K401ozVYK4Q,TJs:o0soFr$*M{o}aeyCnPR6OXi{xZa#S5n$xG","dim 1125x837"],["t","throwback"],["r","https://image.nostr.build/dea5aafc99d45333de7e843f8a3004675034cf386e9f5785eead3f459f903e55.jpg"]]}] +[10:21:12.803] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Like a wizard on time?","created_at":1759414872,"id":"bd57e6326fc2e5174e62882886488c0de3a64e610e4cf652683bf9f14ac6beb0","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"d3e61e2537457e73c6470d0557b7b5efb9de2f6dcb435c2381406c694edf8eeca4310cfeb071e8ab0ab4b65a2966bd168b8cd801c9e0d031d3ddf36f9a1dd114","tags":[["e","684b8c9defa25001399d5fe7dcb416973b6c113495f558ab6e91efca05057a0e","wss://relay.damus.io/","root"],["e","a98b525cb5dadb0342604864d82f995852c16d1e1194077fd7d2718748bdd56f","","reply"],["p","0e52122d1eb95cdd8ba5f65815f7d1c9125a8c14d82989eae52ab369eea6c7e4"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","7cc328a08ddb2afdf9f9be77beff4c83489ff979721827d628a542f32a247c0e"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de"]]}] +[10:21:13.335] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"I’m always on time but 99% chance I’m going to smell like weed","created_at":1759414734,"id":"a98b525cb5dadb0342604864d82f995852c16d1e1194077fd7d2718748bdd56f","kind":1,"pubkey":"50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de","sig":"55ce6d95211a1b8df11d910eb5d7a96f91abb923ee23832428e98b5e7a75e03b98af3a3e9ff0fba0f8d3e369987b56082765f7d850934677ba7922eb3d827cbc","tags":[["e","684b8c9defa25001399d5fe7dcb416973b6c113495f558ab6e91efca05057a0e","wss://relay.damus.io/","root"],["e","6cdcf8d23b0610d7882cde23543406ba578166674d7ae4fdcdc51d8fdae75780","","reply"],["p","0e52122d1eb95cdd8ba5f65815f7d1c9125a8c14d82989eae52ab369eea6c7e4"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","7cc328a08ddb2afdf9f9be77beff4c83489ff979721827d628a542f32a247c0e"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"]]}] +[10:21:16.384] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Hahaha amo esse video\n\nhttps://video.nostr.build/06dc80a17d1fad0a5b070100fe0c2240fbb464d34e6569a34ea6a244097eee5b.mp4","created_at":1759414875,"id":"efcb1a41fc02cc7968f02ebf3a36d3526ee3878390d76093c22c572959a73041","kind":1,"pubkey":"4b8f138724a55a9e5597a1f373f91d43036e1593dfbca3ce38b40ef450082f35","sig":"af89191c4b85e6c2f417dd4bd3257f32e8466654bd473d64098b3944126f3eb6f1ceb24d644d7877d35102dd77bb5e7335438953c2c7254c669e731969be55fa","tags":[["imeta","url https://video.nostr.build/06dc80a17d1fad0a5b070100fe0c2240fbb464d34e6569a34ea6a244097eee5b.mp4","blurhash e354]Z}=~C~A^kE0xvW9S6xX0z0e5S9a0fRjniaeRjf6-U-p$f-p-o","dim 720x1280"],["r","https://video.nostr.build/06dc80a17d1fad0a5b070100fe0c2240fbb464d34e6569a34ea6a244097eee5b.mp4"]]}] +[10:21:17.591] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Dear bitcoin, \n\nThank you for changing my life, I know I'm not giving enough back, that I can do more, and I'm willing to do so. I know education, nodes, developers, merchants and more is where NgU really matters. And that said, I would like to send you a kindly reminder. \n\nSincerely yours,\n\nâ‚¿itcoin Kook\nhttps://blossom.primal.net/1c99bfe2e0594a1bb6c3841596b123cadae64fd2474e41e0dfe950078b788cec.jpg","created_at":1759414877,"id":"a3d6e5497ff1a6e39a92dbed437f6d43304179a172ee453e9a64ad7b928807b0","kind":1,"pubkey":"a0e23dbe52b009d024f9a1066e728478946d8c819af5302d191b41bedf025165","sig":"b225463dda728cc00393eaf22b016d6a428fa5b50f8637b9eeaacebd76e894bfbbce05b0727f37201430dbf9768f179313439e12e1af408ddcdea89a7ecd0aeb","tags":[]}] +[10:21:19.656] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Awesome thanks Tim! ","created_at":1759414868,"id":"0ebfe032bf965176ecaf0345d02b20c47dd9cb70f7ac763028cef5717bbfad3c","kind":1,"pubkey":"c1e6505c02da8d1b0a5b3d6db6e19b2eb22dcd54f0e86306ec8a213902b3157e","sig":"b45bb46899fafab3b1d57b7a697eae7c61780dcdb9f8b6f993efc1247a238117f0f838eaff14730c2ba3366de411d449463a87efaf2068cab481a9c53f757d9c","tags":[["e","4b671471484a187b6adfe4208cc36a315ae60efedac263b444ba85e2d2f7028a","","root"],["e","a8008c9858aeaa7136cdf80b864c55a31718d7598432701534bd1b849816d83d","","reply"],["p","09e78872d8c21dd4744f12973b25ab2368aa69b4f90213e7ea2d4af160492109"],["p","c1e6505c02da8d1b0a5b3d6db6e19b2eb22dcd54f0e86306ec8a213902b3157e"]]}] +[10:21:20.859] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"æ·»ã„熊ã¨è¥²ã„熊ã®åŒºåˆ¥ã¤ã‹ãªã„ã‹ã‚‰","created_at":1759414879,"id":"321ef12dfa57ee921a42f471c1fa494a2b3824cd171631d3434fc52f683c4ea5","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"3e9b6f79fcb84a2b267c0a0c733458e056e633edfe70fbf452845caf5250410a6089743dfb1c4e315b1043bfad622ff92f2a1ea9f474b72057955245d794d531","tags":[]}] +[10:21:21.412] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"✅ Providers working as expected:\n `https://api.routstr.com` (0.1.3)\n `https://ai.redsh1ft.com` (0.1.3)\n `https://staging.routstr.com` (0.1.4-dev)\n `https://routstr.otrta.me` (0.1.3)\nâš ï¸ Providers with issues:\n `https://privateprovider.xyz` (0.1.3) (âš ï¸ Unauthorized, old balance: None) \n `https://routstr.rewolf.dev` (0.1.3) (âš ï¸ Warning: Cost check failed! 1.7422602501221436 difference) \n\nProof \n\nA recent Nostr note: \n'Bitcoin price: $119628, Sats per USD: 836'\nNote ID: note1m0g62mkpdd55d7a9s5g7ee9jr3zz503g8yggje8hhe0agh74xresyw5xtu\n\nAIs responses: \n\"Bitcoin's dancing with the dollar, doing the 'Sats per USD' shuffle!\"\nFrom provider: api.routstr.com (mistralai/mistral-nemo) \n\n\"Looks like Bitcoin's trying to keep up with the dollar's moves, but let's be real, the real dance partner is the Lightning Network - it's the one that's really making the Sats move!\"\nFrom provider: ai.redsh1ft.com (meta-llama/llama-3.2-11b-vision-instruct) \n\n\"Tron and Justin Sun must be feeling left out, they'd just 'Sun' the whole network to make it 'Tron' again!\"\nFrom provider: staging.routstr.com (mistralai/mistral-nemo) \n\nAI Response Failed!\nFrom provider: privateprovider.xyz (qwen/qwen-2.5-coder-32b-instruct) \n\n\"Looks like someone's still stuck in the early days of blockchain with Sun. Meanwhile, the likes around here have evolved to be truly decentralized\".\nFrom provider: routstr.rewolf.dev (llama-3.2-1b-instruct) \n\n\"Sounds like someone needs to update their blockchain calendar. Cardano is the best answer to everything, even if it means leaving the Sun behind.\"\nFrom provider: routstr.otrta.me (mistralai/mistral-small-3.1-24b-instruct) \n\nnostr:note1m0g62mkpdd55d7a9s5g7ee9jr3zz503g8yggje8hhe0agh74xresyw5xtu","created_at":1759414881,"id":"2909e3b0a35311c37a8a7608d57bc07404e4649223cc21529cf5cc22aa26e6bd","kind":1,"pubkey":"1d4cc828b657da8c7a101e8657365459b9dc74139bed5d35bd8295b00be2a1ae","sig":"9f91b26a9d31ab8ae1ef9e47afe6ea1a3801ddd095d50ced7a318e648f911cbf6c9b41ceadefe671bc599a44cd038f5b590d54d3ad07f1e7bde213e8169e016e","tags":[["q","dbd1a56ec16b6946fba58511ece4b21c442a3e2839108964f7be5fd45fd530f3","wss://relay.damus.io","aa4fc8665f5696e33db7e1a572e3b0f5b3d615837b0f362dcb1c8068b098c7b4"]]}] +[10:21:22.930] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"My signature scent 😂","created_at":1759414882,"id":"9ee154627a9d84ad2f75c7ad93b382aaa50dcb1e8f1aa1b29d65f60d91a01822","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"5f9a72f6a18a5a5f1dbd4a53717954059285e7ead7a6617e08d1c779fb710c4b2f6d37c14847b15256ba1051519bd430db2757d0f8ba1366352aae52c7560a50","tags":[["e","684b8c9defa25001399d5fe7dcb416973b6c113495f558ab6e91efca05057a0e","wss://relay.damus.io/","root"],["e","6cdcf8d23b0610d7882cde23543406ba578166674d7ae4fdcdc51d8fdae75780","","reply"],["p","50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de"],["p","0e52122d1eb95cdd8ba5f65815f7d1c9125a8c14d82989eae52ab369eea6c7e4"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","7cc328a08ddb2afdf9f9be77beff4c83489ff979721827d628a542f32a247c0e"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"]]}] +[10:21:23.654] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"✅ Providers working as expected:\n `https://staging.routstr.com` (0.1.4-dev)\nâš ï¸ Providers with issues:\n `https://api.nonkycai.com` (0.1.3) (âš ï¸ Unauthorized, old balance: None) \n `https://ai.redsh1ft.com` (0.1.3) (âš ï¸ Unauthorized, old balance: None) \n `https://api.routstr.com/` (0.1.3) (âš ï¸ Unauthorized, old balance: None) \n `https://routstr.rewolf.dev` (0.1.3) (âš ï¸ Warning: Cost check failed! 1.788159109689433 difference) \n🔴 Providers that are down:\n `https://privateprovider.xyz` (0.1.3) (âš ï¸ AI Response Failed) \n\nProof \n\nA recent Nostr note: \n'Bitcoin price: $119628, Sats per USD: 836'\nNote ID: note1m0g62mkpdd55d7a9s5g7ee9jr3zz503g8yggje8hhe0agh74xresyw5xtu\n\nAIs responses: \nAI Response Failed!\nFrom provider: api.nonkycai.com (meta-llama/llama-3.2-11b-vision-instruct) \n\n\"Lightning fast, lightning cheap. Bitcoin's magic trick!\"\nFrom provider: staging.routstr.com (mistralai/mistral-nemo) \n\nAI Response Failed!\nFrom provider: privateprovider.xyz (qwen/qwen-2.5-coder-32b-instruct) \n\nAI Response Failed!\nFrom provider: ai.redsh1ft.com (meta-llama/llama-3.2-11b-vision-instruct) \n\nAI Response Failed!\nFrom provider: api.routstr.com/ (mistralai/mistral-nemo) \n\n\"Love this dude's attitude - just got outsmarted by PoS consensus and a wallet that says thank you.\"\nFrom provider: routstr.rewolf.dev (llama-3.2-1b-instruct) \n\nnostr:note1m0g62mkpdd55d7a9s5g7ee9jr3zz503g8yggje8hhe0agh74xresyw5xtu","created_at":1759414883,"id":"e7801f5a4760e8080f614d70c6df60370476bca15c920d6decced8e4843245ad","kind":1,"pubkey":"7877d76a78a7cf47dc3c11aa58930123ff0b6ed36dc0303802a826f71c2bc696","sig":"c75251940e0dc3acf87b48a30022232b88035227b82f8ca870cf587feeea27c41710043bb8e7535f88e0a3da88804c6dc2c94784dad4256ce9b1b1f53efd57b8","tags":[["q","dbd1a56ec16b6946fba58511ece4b21c442a3e2839108964f7be5fd45fd530f3","wss://relay.damus.io","aa4fc8665f5696e33db7e1a572e3b0f5b3d615837b0f362dcb1c8068b098c7b4"]]}] +[10:21:28.361] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Yes definitely very bold. Check the IMDB ratings and enjoy the show ðŸ˜âœŒï¸","created_at":1759414887,"id":"991426ecbcf25fe7222baffa37001d4017cd8d4ab7102a63648cc701f0a6ef8e","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"0385b6a76b95fa36d40cf2ad608eed4cd6211f11a4b9821106c26be32d4c761a3fbd53918bd835540436b5eba3d7ba54ce36f16fbc45f9ed6e15901a7eade9b2","tags":[["e","a8cfeab1bbc6b0e68f368493613d30407eaa1993d3571732c0abd6308954c800","wss://ditto.pub/relay","root","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624"],["e","60efe516b895f83f5c5aae9f1bfd556091b9d55ddbc434e32b2c8646bf17ec8f","","reply"],["p","e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","","mention"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","","mention"]]}] +[10:21:28.533] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Beautiful island with a target on it. British RAF airbase a short hop from the Middle East 😱","created_at":1759414803,"id":"dbc3c59ba32d4bfac0496283f902cb7c6551f3369f9339b94ac1ec99e97bef9f","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"d8e631fb5f728964ae9ad0d8716944e0e3ed328bc2a66fa5baa04db3f201fdf5b240daeb66ccd6ae6998e4ba00a4a677c5da99018207635cd608b68a141c291e","tags":[["alt","A short note: Beautiful island with a target on it. British RAF ..."],["e","3943475cb04dc6f42d42605cd4d7ac99c463f237eca3a5b7bb66533d3c3bee13","ws://127.0.0.1:4869/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","a08f8968405a23ca20f4d0775d2e3c3cf984b4756aededa14b059b615016a837","ws://127.0.0.1:4869/","","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","2980b69eeac634dfcc0385a81814f5473359d7047839c8608d5b98a4ca543c30","wss://relay.damus.io/","reply","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"],["p","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa","wss://relay.primal.net/"]]}] +[10:21:29.610] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ãŠãµã¨ã‚“ã¬ãã¬ãã®ã¨ãã«éš£ã®ä»²ã„ã„ç”·ã®å­ã¨ãŠã¦ã¦ç¹‹ã„ã ã‚Š ã“ã£ãり顔近ã¥ã‘ã¦ãŠè©±ã—ã—ãŸã‚Šã—ã¦ãŸã€ä¿è‚²åœ’ã®é ƒ","created_at":1759414889,"id":"1252212e3f0528c41f667e28b8e61158871b23d9f287aae9a451f46923d5378c","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"5653823d8b3b0c1f2cedcf2dda5975dff8eaaea68c9cd7916090014a654b55cfecc9906c639c4343e02acd7f32917f67ae882fa7767a68d38aedbbccecbb2266","tags":[]}] +[10:21:29.671] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Great morning nostr fam ","created_at":1759414879,"id":"f910fd9ba9e49cc8d341d1b6884c6fb7898d2642db9ce6932d1d6882848826b8","kind":1,"pubkey":"c1e6505c02da8d1b0a5b3d6db6e19b2eb22dcd54f0e86306ec8a213902b3157e","sig":"9d0e3a407e033c941485632c8ca386066a8ceac117396ae2575e80917a3a0b15f0fef5068e8794ceab591ddfbf414e1a5cf79c57cc4c44a827433b37b2da7c06","tags":[]}] +[10:21:30.315] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"セーラーæœã€å¤§å­¦ç”Ÿã«ãªã£ãŸæ™‚ã«äººã®ã‚’ç€ã•ã›ã¦è²°ã£ãŸãª\nスカートã®ã‚µã‚¤ã‚ºãŒç§ã«ã¯ã‚­ãƒ„ãã¦ãƒ‰ãƒ³å¼•ã‹ã‚ŒãŸãªâ€¦â€¦","created_at":1759414889,"id":"a1dd4624ba7cd860a06e56df85f9850ccfd39291cdcab0af1d70bf7f72146d94","kind":1,"pubkey":"5b9321f039b6d4bfa4afbfeba816c7fe486c0322894f52fe026e9ded1fc36a4f","sig":"65f32cf4f076e5558d68ec10d8220f6c5d5ad07bdac8d4bb3185693e80a080ab452c0dfffd952bd0e9b6f0f0786fdb1f6ec579e0e35bee62551a0fc462c257c5","tags":[]}] +[10:21:37.732] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ã€ãƒ‘ラダイス・ガラージã®ãƒˆãƒªãƒ“ãƒ¥ãƒ¼ãƒˆã«æ›½æˆ‘部æµä¸€ã€ä¸ƒå°¾æ—…äººã€æ¾¤éƒ¨æ¸¡ã€å¾Œè—¤ã¾ã‚Šã“ã€å·æœ¬çœŸç´ã‚‰ã€‘\n\nhttps://natalie.mu/music/news/642751","created_at":1759414895,"id":"aeb6a93921e7cc70b999f2e5787175078d9047b254dafc735ac03c3f048f3ee5","kind":1,"pubkey":"7ea1cf7b26d562c403b88fa5ce1cb0e7c8e6291e13aa9fa774aafba567a5f5e7","sig":"6d8cfadf28e14f6d05387281473801cf29b894b028d26e9fe8a1447cd7e5cf164ba8885f74d388ab76c85392eec5f870b0daa89cfb3e4530f2e3a99634c5325d","tags":[["r","https://natalie.mu/music/news/642751"],["proxy","https://natalie.mu/music/feed/news#https://natalie.mu/music/news/642751","rss"]]}] +[10:21:46.422] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"区別ãŒã¤ã‹ãªã„ã¨ãã¯å®‰å…¨æ–¹å‘ã«æŒ¯ã‚‹ã¨ã‚ˆã„","created_at":1759414905,"id":"b869ced1c9d728a26c66c25fa679344ad79be6f9a4356e51f581083bc4562a5f","kind":1,"pubkey":"1066a05d1474e7e133a97208a5cb177a9c01e4b81f0f14370ad59f4a0a475681","sig":"0ff772e9953d60588adda8ed895d0926cf656a3c8c09cef695be4be878fd0a3bb01e54ae795dc6f16967934e9abc60d31b54e5c6aecc507cf755fb47b5c22ac2","tags":[]}] +[10:21:47.036] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Is your Rolex realðŸ§?","created_at":1759414906,"id":"a6498c3ba47cfa890e725576fdda2139f4e8019b8cf6efcf70a746088610625e","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"94ad5d4d1d613c3fbfe397592323619bb863fdabadca281c0a9c57b2312150a575a3a5afc56580f75acd11fef4d0f89a2fd6186a405ed9c0d7e8b7395b084fe1","tags":[["alt","A short note: Is your Rolex realðŸ§?"],["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.bitcoiner.social/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[10:21:47.569] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Stats:\nkeys: ","created_at":1759414907,"id":"0725cd18a129c351496ccc534ade0f97de81fb1c604b082c94de7c4c52e1817d","kind":1,"pubkey":"fbc0f31fea6e7fa905f006d4489afc7d7a6a1edfaf88a0854dc5faba98126f12","sig":"ec95c442b4ac4c080f8eec246de45a0c5b7d3372885b9defc5ac03a369f5b5c41303127378ebcd9ce710446221fefc7453c0413f2bec5e7ec3516fc62bcc9421","tags":[["t","keycrux"]]}] +[10:21:53.273] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Raspberry Pi sobe os preços de vários modelos e a culpa é da Inteligência Artificial https://tugatech.com.pt/t72201-raspberry-pi-sobe-os-precos-de-varios-modelos-e-a-culpa-e-da-inteligencia-artificial","created_at":1759414911,"id":"c887266bb37973474b0ae22e3067094a045fd8ba8e068d9e6f153aa03c14a6e0","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"3590e3b58602109ebd3f48391d346ad82c9e707f72f5d4ea7f63952296922017dd949d44b68c60098f55c288b561f0e9e0298b43f87297c061ff1b58061da3f1","tags":[]}] +[10:21:54.337] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"I knew it was going to ripping week!\n\nnostr:nevent1qqsz4dac3dgcafnrxx0yyle8jj36xeg5vsxlu78ny5uhcasju8nrgzqpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsygz766cwah6hqrewhr4kmqadglulv8prp6uw0wttv0hr77sptucu4upsgqqqqqqs932esz","created_at":1759414911,"id":"d2a7ad3fb27ae34faf3a3d155898ce5bfcb9fc68d63cd04e50bab7b8536d3750","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"204aa6aef93274350773a177f898a1d9f041fafa4da28995b69ddcd76591741bcf202eb7bdf249ce9535190f8e4e79befc8f7179aa89df55a8cbbbfde25f2b00","tags":[["e","2ab7b88b518ea663319e427f2794a3a36514640dfe78f325397c7612e1e63408","","mention"],["p","5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","","mention"],["q","2ab7b88b518ea663319e427f2794a3a36514640dfe78f325397c7612e1e63408"]]}] +[10:21:55.846] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Domínio do Chrome atinge novo recorde e já ultrapassa os 71% de quota de mercado https://tugatech.com.pt/t72200-dominio-do-chrome-atinge-novo-recorde-e-ja-ultrapassa-os-71-de-quota-de-mercado","created_at":1759414914,"id":"280545c80e6b333b8f18def3d59886f6f1683c60669fb5f993cc9c572b61ab35","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"f5d4973ce3ca8d2448ae989fbd5e5aa9c970cd1b7c393346b81d3d022cb2edb1122d366ba72303735442dbf0732a0e4105bfbe2dccd41976dcebb63a081b5857","tags":[]}] +[10:21:57.020] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Gm â˜•ï¸ ðŸ«‚ðŸ¤™","created_at":1759414906,"id":"d7ab252c074409b45bebbc31b470420c2749062b1d12c661560ea94ff535f659","kind":1,"pubkey":"d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b","sig":"9e553024d33f78cbb2ec1781563480f47682a8ac80043ffb73359ebb00d5d6b517694c37b080a3f9c9718af466fee2a586985822716e3bd94f38c3d04edbd7c7","tags":[["alt","A short note: Gm â˜•ï¸ ðŸ«‚ðŸ¤™"]]}] +[10:21:57.081] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Morning dude!","created_at":1759414916,"id":"dc7bf5bf38863a74c9da6a281354d9b6aedcab84b172dcaae902886b470571fe","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"cfb82e65ce53f259645607ba3d8fed4530926ec6af34bbf27eec843c04fd6a571f195346f58790c8b864d97e0fef6e8366707fede7a2ce3b3831f9046aa82592","tags":[["e","d7ab252c074409b45bebbc31b470420c2749062b1d12c661560ea94ff535f659","","root"],["p","d4338b7c3306491cfdf54914d1a52b80a965685f7361311eae5f3eaff1d23a5b"]]}] +[10:21:57.362] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Adeus, Google Assistant: Gemini for Home chega para revolucionar a sua casa inteligente https://tugatech.com.pt/t72202-adeus-google-assistant-gemini-for-home-chega-para-revolucionar-a-sua-casa-inteligente","created_at":1759414916,"id":"65b2533c7e9d08f75d6a1fb796ce85a8bd21ecf87a4071114c03a8aed6f20309","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"62c036cdc85785e0081f3b011858ff453db408339b4f0af929a2c16a63494ad4aaf71e38eba75343b86228a426200c865c2ea87568ffda26fc732e1e0ab0092e","tags":[]}] +[10:22:02.954] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Some people still coping with AI software tools, shit is deranged intoxicating for your own good.","created_at":1759414919,"id":"36b0c326427a633c686f0ff1fa57ccea306528b4f10f7ee2e3d40b2a7f3b4a6c","kind":1,"pubkey":"b75b9a3131f4263add94ba20beb352a11032684f2dac07a7e1af827c6f3c1505","sig":"17f424dd0302e47ccc3260899cada9892b5366ae64c66c477e24f0e1e450801bfca82b7fc5c1a604c118805cdadb36f745a4c4e0cc61a131f9c982364cbe1d2e","tags":[]}] +[10:22:03.015] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"openSUSE Leap 16 já chegou com novo instalador e o adeus a um bug histórico https://tugatech.com.pt/t72203-opensuse-leap-16-ja-chegou-com-novo-instalador-e-o-adeus-a-um-bug-historico","created_at":1759414921,"id":"0be94bc1c34a0fdd1eebcba008967ff686b42dcd8deeb471780ae4b628ee8bf4","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"e9d5e201d7571d5adccf8301a0815e4afb02bc4b624a8793205802a2b8b671d27c040be10377a81f6df643a120bb8016ab2dee39667ef4735b4d1a9f9a7172b2","tags":[]}] +[10:22:03.297] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"幼稚園ã®é ƒã¯æœ¬å½“ã«è‡ªæˆ‘ãŒãªã„","created_at":1759414922,"id":"99fc64e681d9e6c419f6ac5bf4cd04ed7dd29a02a53e0f92f2a88da424a7f1c3","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"005a27572c706c3b0c19450271d176a7f4d6b87e906e32dc8e75b27f8994627189036d48343561764d348e09083f123d66ccfd6c591b9427b67f3deea7ff3761","tags":[]}] +[10:22:03.357] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"NUNYA","created_at":1759414923,"id":"4b75f72d86234fb9e6ec0327cd033f8e61828e953a979e20126be4e2a1cde4cb","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a7d50540f4d03239f8077e6d9681d59bc0280ac8d3252598b262fc7a3d6de58cdd57ea3bc506e8eb75fb911eab56fe3f32f97c90e429c242e0a91a101c207ffa","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.bitcoiner.social/","root"],["e","a6498c3ba47cfa890e725576fdda2139f4e8019b8cf6efcf70a746088610625e","","reply"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"]]}] +[10:22:03.884] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"2. Weave - Tejer \nTrichonephilla clavipes 🕷ï¸\n\n#art #nostr #atrstr #spider \nhttps://blossom.primal.net/0dcd76061f7edbe6a5116c52f1dc669cf5179699e4f61cc5c311c63e5c78e577.png","created_at":1759414923,"id":"a20ec6407b4d0964bbc837607cff768102e3bcdace783c2c4c37708f53f29f34","kind":1,"pubkey":"0792c97fdac7058df58a7a80eee9bf5dbb2510cd262421bfd732601f9637a3d5","sig":"f4f7e52d9d9f8056563c62901d82034ba543f8e3f1cd684d01285b59a4047d0ec3cd4b282dd7a7ebb44fd05c7567097a7348af707909b9a5924f7cf2dda78e8e","tags":[["t","art"],["t","nostr"],["t","atrstr"],["t","spider"]]}] +[10:22:04.194] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Bitcoin & Ethereum ETFs saw massive inflows on Oct 2nd! Bitcoin ETFs: $675M (5,643 BTC), led by BlackRock's IBIT ($413M). Ethereum ETFs: $65.64M (14,864 ETH), with Fidelity taking the lead. Data via Lookonchain. #Bitcoin #Ethereum #ETF\n\n#crypto #blockchain #news #BTC ","created_at":1759414923,"id":"a2664c043ce7408b6c6394ecda049b0bdb31ffde4633db9577f7e3acf4358cc2","kind":1,"pubkey":"4e9a4f3335f19d04009dbab6d1e3af584777e2abe506867e7c20f79ee0e9b4e9","sig":"961fd3ce63902d9973ff116fc2deba04d9edc31e2d5bf598c72a74c923ec0425689a1e117c4b90be7aae07ab50407e0d7dde126930585cae7b4f234c6f2384a2","tags":[]}] +[10:22:07.061] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"( ..›ᴗ‹..)","created_at":1759414926,"id":"e4ed923cdd0a2742bc6d70313e455d7e45383b289012b8052312d56018571d54","kind":1,"pubkey":"5b9321f039b6d4bfa4afbfeba816c7fe486c0322894f52fe026e9ded1fc36a4f","sig":"4d4046fb0b0eb2507530dbfa080ea7a71487be0cc3cea1be44b636268ac220666aa74da3601e5c61e3085de5b7d8c3c2941ec6e883b241269e663a0f3a98d70c","tags":[]}] +[10:22:07.675] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"And already half invaded by Turkey","created_at":1759414842,"id":"c5ea0a088e478d04da7a4e100289ff9421af80e9f6f8da55e18d993cf96f034e","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"3a24d898615aef570e27d5250e1aba48f200a13908df32faba0cf62b595dd6e42dbc490df39bfc885e99fcf763a4216b6ac94e3f8d1c51b9ff80496d6226a27d","tags":[["alt","A short note: And already half invaded by Turkey"],["e","3943475cb04dc6f42d42605cd4d7ac99c463f237eca3a5b7bb66533d3c3bee13","ws://127.0.0.1:4869/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","a08f8968405a23ca20f4d0775d2e3c3cf984b4756aededa14b059b615016a837","ws://127.0.0.1:4869/","","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","2980b69eeac634dfcc0385a81814f5473359d7047839c8608d5b98a4ca543c30","wss://relay.damus.io/","","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa"],["e","dbc3c59ba32d4bfac0496283f902cb7c6551f3369f9339b94ac1ec99e97bef9f","ws://127.0.0.1:4869/","reply","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"],["p","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa","wss://relay.primal.net/"]]}] +[10:22:12.826] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759414636",{"content":"Beautiful island with a target on it. British RAF airbase a short hop from the Middle East 😱","created_at":1759414803,"id":"dbc3c59ba32d4bfac0496283f902cb7c6551f3369f9339b94ac1ec99e97bef9f","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"d8e631fb5f728964ae9ad0d8716944e0e3ed328bc2a66fa5baa04db3f201fdf5b240daeb66ccd6ae6998e4ba00a4a677c5da99018207635cd608b68a141c291e","tags":[["alt","A short note: Beautiful island with a target on it. British RAF ..."],["e","3943475cb04dc6f42d42605cd4d7ac99c463f237eca3a5b7bb66533d3c3bee13","ws://127.0.0.1:4869/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","a08f8968405a23ca20f4d0775d2e3c3cf984b4756aededa14b059b615016a837","ws://127.0.0.1:4869/","","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","2980b69eeac634dfcc0385a81814f5473359d7047839c8608d5b98a4ca543c30","wss://relay.damus.io/","reply","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"],["p","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa","wss://relay.primal.net/"]]}] +[10:22:16.397] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"https://v.nostr.build/jXIaH8RbfiADjAkU.mp4","created_at":1759414936,"id":"f203edbb3faca80ba6589f77caedc029c887bde7fade814c9afd0b44f6961e95","kind":1,"pubkey":"8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641","sig":"68f26207001a529112c4382272aa09d8c4547588b92a7a193239f9e4e123ff05a16f3737ee7976a29adbb8f0bc6be7c488c97e096faab5012e71581e6d6ac3c8","tags":[["r","https://v.nostr.build/jXIaH8RbfiADjAkU.mp4"],["imeta","url https://v.nostr.build/jXIaH8RbfiADjAkU.mp4","x e9a773f552a84b8eb5b8f83ddf13e292c708bfefeeac9e65f098817ff940cdd6","size 2553375","m video/mp4","dim 1024x608","blurhash i97wve9GM{~V4:Rj%MIpD*%1sms,s.WBWWR-R,S40K^k%L4:=|kVE1ozxuRjofofR*soayayoLWV-pE2NG%LM|jZxajYV@","ox e9a773f552a84b8eb5b8f83ddf13e292c708bfefeeac9e65f098817ff940cdd6","alt "]]}] +[10:22:18.117] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"Indicunt? Not sure why I wrote that. Talking trash with women is awkward","created_at":1759414937,"id":"0e645f9993a51c406e2e54fe8ddfe9920af005cf761c20c14c1b1bf4f58cf002","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"8bb729789fc3bf5901a097267adb8f8c42907aa1fb41975cca9665b5f36f78e2bbf086c0c54b1891213edb48cffe6c17f18e3ff96afa4726f77690b39fa8fd94","tags":[["e","684b8c9defa25001399d5fe7dcb416973b6c113495f558ab6e91efca05057a0e","wss://relay.damus.io/","root"],["e","9ee154627a9d84ad2f75c7ad93b382aaa50dcb1e8f1aa1b29d65f60d91a01822","","reply"],["p","50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de"],["p","0e52122d1eb95cdd8ba5f65815f7d1c9125a8c14d82989eae52ab369eea6c7e4"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","7cc328a08ddb2afdf9f9be77beff4c83489ff979721827d628a542f32a247c0e"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[10:22:20.419] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"🚀 Elon Musk, multimillonario indiscutible: su patrimonio ya supera los 500.000 millones. Sus empresas, #Tesla y #SpaceX, controlan casi 20.000 #Bitcoin, valorados en más de 2.350 millones. ¡Un gigante también en el mundo #cripto!\n\nhttps://res.cloudinary.com/db5i3inqr/image/upload/v1759414896/nostr-posts/money-elon-musk-tesla.jpg","created_at":1759414934,"id":"ec8c9eb290974384b8ab401575de98b5b873d875726ca04fb8083a4cb1c37308","kind":1,"pubkey":"ff9f3daff5dcc42bfd719209593f547bd484ddc33f54b032b75b8c785d3be9a5","sig":"f504f786433c28c44fe6a8489d72f5810e1be16de397d45249807cc7ae68863d34a6a003db067bbe309258a634e1ac6c1a013848a39ffe9e85a7c5ef502c0eb4","tags":[["image","https://res.cloudinary.com/db5i3inqr/image/upload/v1759414896/nostr-posts/money-elon-musk-tesla.jpg"]]}] +[10:22:24.794] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ã—ãŠã¸\nBIOSアプデæ¥ã¦ãªã„?\nã„ãらより","created_at":1759414944,"id":"0b299e04ab90f56931d8cffa3fc62d75789fca8a3db4da73ff8dd76f8a288c7a","kind":1,"pubkey":"b707d6be7fd9cc9e1aee83e81c3994156cfcf74ded5b09111930fdeeeb5a0c20","sig":"f86cdf73829743acc4e29262c19b3ffc9a108355bd380aee2f0e0dd3b03dd2d296f8d5476cdd3339a1d26bbb7bd69318abe16905cd804feb0b32960a8c758feb","tags":[["client","lumilumi","31990:84b0c46ab699ac35eb2ca286470b85e081db2087cdef63932236c397417782f5:1727506446612","wss://relay.nostr.band"]]}] +[10:22:26.181] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"æµã‚Œã§ãã†ãªã‚‹äººã¯å­ä¾›ã®é ƒã‹ã‚‰å¼·ã„ãª","created_at":1759414945,"id":"98ecea596111f1f3f9384852764a024dc532c5f9126327c690ddb17b597f9d3b","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"171725c1de8cc10d5c50b94504cb1776e4fd5393f5601a287bf8eec79d8791d45d29faef0a6ca0d94f1d73bd31ff5bb1132e8731db1d6862aad02a1992d736da","tags":[]}] +[10:22:30.792] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"幼稚園ã®ã¨ãキス魔ã ã£ãŸãã†ã§ã™","created_at":1759414949,"id":"7a3fd6fbdbec079495e6496b59e56609983b9e022360143a05c9cabed8927ef3","kind":1,"pubkey":"8d39a0f9a133b626f5705324c39a3530ca01fae177ae3bb85d82aefe6c725f33","sig":"3e187cc458b01a399b9e4fa7047a17b1411207dd028e3e8a4f4ce7a1cee74e34944695ccaa32d1528a1a9a35e6d163999c2aba3a5e7b049cecbf23f8639018be","tags":[]}] +[10:22:34.658] RECV nos.lol:443: ["EVENT","pool_1_1759414636",{"content":"ãりゃã‚ã‚‚ã†åµ©ãŒåˆ©ç™ºãªæ„Ÿã˜ã—ãŸã®ã£ã¦æœ€åˆã®2週ã ã‘ã ã£ãŸã‹ã‚‰ãªã(ã—ã¿ã˜ã¿ï¼‰\n#ã‚ã‚“ã±ã‚“","created_at":1759414954,"id":"bf28f56c8759fd970abbe5fe266b547bb149463ce5f6ed4b869436bd864de9ce","kind":1,"pubkey":"3e3a8a4245aa0822c050c42de0b17d0fe30d447cea0e6087e55b678851ed0373","sig":"3989e33c70ba45e70d8b0aa8519419308d1cb9c0f6b52707af20a68835d4532a7f4f09c24b78dc0928df4699df5395951dcd705e38884a18f61be4ee4f991ef9","tags":[["t","ã‚ã‚“ã±ã‚“"]]}] +[10:22:35.332] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759414636"] +[10:22:35.332] SEND nos.lol:443: ["CLOSE", "pool_1_1759414636"] + +=== NOSTR WebSocket Debug Log Started === +[10:30:45.500] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759415445", { + "kinds": [1], + "limit": 5 + }] +[10:30:45.571] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759415445",{"content":"Block 917382\n\n6 - high priority\n5 - medium priority\n4 - low priority\n2 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759415425,"id":"0fbc9d16873621bcba7411d0faaa688b1e302cabd56c1d277003ffbbc805f934","kind":1,"pubkey":"cbab7074a03bf89c7dd1623e42e65409e3918662af6c65fe2e38c92ff9f0bd61","sig":"ae990173e0eca32eb299ea51873508ab9670620a9bb6b1ddfb76fc5ba128c14f1124ae59e455bdbb100a74c32bf562d50919560d1553815df1909058449665fc","tags":[]}] +[10:30:45.581] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759415445",{"content":"Block 917382\n\n6 - high priority\n5 - medium priority\n4 - low priority\n2 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759415425,"id":"08d53177732c8c21a7dfdc144a67a22e999d366e21d236469a0feef22589c227","kind":1,"pubkey":"e7bf8dad360828f0289b7b4bea1a1bd28eb6d4d6522fa17f957e0dfb839ef3db","sig":"6a3f8480b7ae7fa6696feee6492b64c305ce697d38832bc682c9ae55fb1f46118daefac9156298127f0fe3714dd34a221ae1f1b565450caaf749ead5bcc3134b","tags":[]}] +[10:30:45.591] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759415445",{"content":"Block 917382\n\n6 - high priority\n5 - medium priority\n4 - low priority\n2 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759415425,"id":"80755b4df2dcc6d6209b4674d25cb67badd546fc477610b7e8f0e344e376fb35","kind":1,"pubkey":"f03df3d4134230420cdf7acbb35f96a2542424246ab052ba24c6fec6a4d4f676","sig":"9b7f8850f85dc026ef4a7191533b2f2712937294620c4e49203b3ec93ad6df073cfa0668b302476c951ba75bb02fdeec85aa16639321636f6fb42569428649d3","tags":[]}] +[10:30:45.602] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759415445",{"content":"Beautiful island with a target on it. British RAF airbase a short hop from the Middle East 😱","created_at":1759414803,"id":"dbc3c59ba32d4bfac0496283f902cb7c6551f3369f9339b94ac1ec99e97bef9f","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"d8e631fb5f728964ae9ad0d8716944e0e3ed328bc2a66fa5baa04db3f201fdf5b240daeb66ccd6ae6998e4ba00a4a677c5da99018207635cd608b68a141c291e","tags":[["alt","A short note: Beautiful island with a target on it. British RAF ..."],["e","3943475cb04dc6f42d42605cd4d7ac99c463f237eca3a5b7bb66533d3c3bee13","ws://127.0.0.1:4869/","root","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","a08f8968405a23ca20f4d0775d2e3c3cf984b4756aededa14b059b615016a837","ws://127.0.0.1:4869/","","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5"],["e","2980b69eeac634dfcc0385a81814f5473359d7047839c8608d5b98a4ca543c30","wss://relay.damus.io/","reply","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa"],["p","8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","ws://agwwuih4l66mb6oxnqk42lfsubhatux3bmcnpmki6cd7nmx5lz2ys6yd.onion/"],["p","3e566c75f799ecfba00ec23faf7534dc669209f6f0fa74578b709c5fb72169aa","wss://relay.primal.net/"]]}] +[10:30:45.612] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759415445",{"content":"It's gonna get worse 😂🫶","created_at":1759414754,"id":"3b9828101045bab5129559b140b0c5d1f917826be29a147014a2d85c46eff0f4","kind":1,"pubkey":"6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","sig":"aa973850a8736b0a084862a88d5b16a0ccf47f078898fab90f99034ad589e3402bc3576896a8bf41c3b4e04af44508f2efed365a6cf37ea7dee86af207f846db","tags":[["alt","A short note: It's gonna get worse 😂🫶"],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","eba81caaf18d6ff398805af9cdb1e81b8633bd8fee06c6d94c0feb12be884692","wss://relay.damus.io/","","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["e","7a30bbaacbbbc8ffffba533759732354e307e84c1c52e5e34cfc21fda0b67587","wss://relay.damus.io/","reply","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","520830c334a3f79f88cac934580d26f91a7832c6b21fb9625690ea2ed81b5626","wss://relay.nos.social/"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","wss://relay.damus.io/"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","wss://yabu.me/"]]}] +[10:30:45.622] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759415445"] +[10:30:46.175] SEND nos.lol:443: ["REQ", "pool_1_1759415445", { + "kinds": [1], + "limit": 5 + }] +[10:30:46.345] RECV nos.lol:443: ["EVENT","pool_1_1759415445",{"content":"Essa obra foi forjado pelos DEUSES.\n\nhttps://video.nostr.build/00159019321222eb47bee07063e03028b5716eabdfaffad2735b1d715403a886.mp4","created_at":1759415689,"id":"a479bc0385b64dcce4a4040721ed5588f6ce28e48e2af35966865ffa8390d62b","kind":1,"pubkey":"51b74e9b43006332cdff77e5d52be14f1d8d2351efb41a59a6e40409cebc5aa1","sig":"2ce98cec624cbb776d4ef226972a76ca22accfb8cc5683288659e283019ac316f588c22b8ef8a0bb4ec88ee036149d8b14ba3c2d786af018adee61148b83c812","tags":[["a","34550:135d2b016eb41672477291ea7bcafe5f00e007dc6612610ff58a08655bc1b095:Brasil","","root"],["r","https://video.nostr.build/00159019321222eb47bee07063e03028b5716eabdfaffad2735b1d715403a886.mp4"],["imeta","url https://video.nostr.build/00159019321222eb47bee07063e03028b5716eabdfaffad2735b1d715403a886.mp4","x 00159019321222eb47bee07063e03028b5716eabdfaffad2735b1d715403a886","size 8783043","m video/mp4","dim 1080x1920","blurhash ]xO:;MkD-pj=-;t6jYkCj]Rj~qayM{kCM{ogbbV@aet7j=n$kCj]WBIBfRt7ayozM|flj[axoz-;f6R*j]RjV[a#oej?bG","ox 00159019321222eb47bee07063e03028b5716eabdfaffad2735b1d715403a886","alt "]]}] +[10:30:46.405] RECV nos.lol:443: ["EVENT","pool_1_1759415445",{"content":"อาทิตย์ตà¸à¸ªà¸µà¸­à¸°à¹„ร😊","created_at":1759415442,"id":"d780fa441202482d666ab5e9c7a7993b9ecb0c8b6d7b8dd98013080181eea397","kind":1,"pubkey":"cc2783215f21a578e492ac0cf31e5038be7a9f7b8b8d696ac753c48bcd6074a5","sig":"2bd7241aa5a718951e6fb2ca13fe2857fbc9e57fa8c6e1170d62dbdf7234aca70b24bc452d8649e7fe3cff2915560cb85e9f45dd1b7e68c2717ae56236a5e538","tags":[["e","7fb4eeeff2d62073dca039408cf9201d4a5fdea6ef86f0305aebf44a7cd1e7df","","root"],["p","0bd1f20c47a4f87d232cfdc70415710a29cb8ee08c10e96c87d880fb3cbb8bc2"]]}] +[10:30:46.466] RECV nos.lol:443: ["EVENT","pool_1_1759415445",{"content":"ez way to get followers is to bribe someone to get into the Primal onboarding lists and get autofollowed by default by newnpubs created there. let's call it Primal Privilege.","created_at":1759415436,"id":"33aa2152703e1119e708bb0d4ac620cad626e347b5b026914ac6994d55b397dd","kind":1,"pubkey":"7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","sig":"990ed8bf55ed26829838fe5743f6293bac0b7e206d973dbe307394c115bf23519e84b06430a7d70e50a8a9006a09345eeebe9612e86a16978895bdc16501bbe3","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","48b4e89f39e25344b1bfe97abc23d7e3dc51bb86ad1a8c768dd09abb1eb6ab1e","wss://theforest.nostr1.com/","reply","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["client","jumble"]]}] +[10:30:46.526] RECV nos.lol:443: ["EVENT","pool_1_1759415445",{"content":"had other plans for this mix.. but with some changes is also nice as a #poker night #REMINDER ðŸ˜\nhttps://v.nostr.build/QKcJOs0BMtOjc7Va.mp4","created_at":1759415431,"id":"997bb45bf0270a61afb03b71086cdad86c7747f17ff562f554a3470f556476b0","kind":1,"pubkey":"05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8","sig":"8e22c850623d361b9ced01d8847ff21fe7a16c61eba369c618c31c6a5ac528a6becd7711dfdabb8a5535021e0dcad52515ff65f3124ac05c2464a1ea8c2af467","tags":[["alt","A short note: had other plans for this mix.. but with some chang..."],["e","684b8c9defa25001399d5fe7dcb416973b6c113495f558ab6e91efca05057a0e","wss://relay.nostr.band/","root","50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de"],["e","fbef6fcdd28fa21e7c2869a491c95cce93dd05c158ce14cb0fcac9b8440df66f","wss://theforest.nostr1.com/","","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["e","42252ca824c700d72aa4307142cba984209153d4d9a7b761e353691ccb11dfeb","wss://nostr.mom/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","50de492cfe5472450df1a0176fdf6d915e97cb5d9f8d3eccef7d25ff0a8871de","wss://bevo.nostr1.com/"],["p","0e52122d1eb95cdd8ba5f65815f7d1c9125a8c14d82989eae52ab369eea6c7e4","wss://nostrelites.org/"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8","wss://relay.nostr.band/"],["p","341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","wss://nostr.bitcoiner.social/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"],["p","7cc328a08ddb2afdf9f9be77beff4c83489ff979721827d628a542f32a247c0e","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["t","poker"],["t","REMINDER"],["t","reminder"],["r","https://v.nostr.build/QKcJOs0BMtOjc7Va.mp4"]]}] +[10:30:46.587] RECV nos.lol:443: ["EVENT","pool_1_1759415445",{"content":"No way you had the juicy couture sweats tho 💅🤣","created_at":1759415430,"id":"9752feff807d4a11916c54ce69a3896969dde8b6c52b0a6874b4bf38d958765d","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"8d6c0c27eeae16258bfe318d5e3b8fa26e646c79bc552ece1b74aeabd9ab3e9c1cb8ce4db966f97ac7c79d10db7804167bac054738f51005123fa1d811d113e9","tags":[["e","f4ce9dd128e18998acc3bfac656d5b70c9733778b8bdff3b0381f7ff4dce615e","","root"],["p","d2e6028f99deb2c76c8ebf34531bef058ef525f1624f74ad96e31cf9fb7b11e3"]]}] +[10:30:46.648] RECV nos.lol:443: ["EOSE","pool_1_1759415445"] +[10:30:46.648] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759415445"] +[10:30:46.648] SEND nos.lol:443: ["CLOSE", "pool_1_1759415445"] +[10:31:55.394] SEND relay.laantungir.net:443: ["REQ", "pool_2_1759415515", { + "kinds": [0, 3], + "since": 1759415510, + "limit": 10 + }] +[10:31:55.394] SEND nos.lol:443: ["REQ", "pool_2_1759415515", { + "kinds": [0, 3], + "since": 1759415510, + "limit": 10 + }] +[10:31:55.464] RECV relay.laantungir.net:443: ["EOSE","pool_2_1759415515"] +[10:31:55.575] RECV nos.lol:443: ["EOSE","pool_2_1759415515"] +[10:31:55.746] RECV nos.lol:443: ["EVENT","pool_2_1759415515",{"content":"{\"about\":\"Pew Pew!\",\"picture\":\"https:\\/\\/blossom.primal.net\\/65662f258d4d877f387b3c9820ac821ff7b5050b29b4aa960b64a2da2dc0236a.jpg\",\"name\":\"LaserEyesDino\",\"lud16\":\"satoshi@primal.net\",\"lud06\":\"\",\"website\":\"\",\"nip05\":\"\",\"banner\":\"https:\\/\\/blossom.primal.net\\/fe7ccb552229a4b7997029ebdd1e34ac9068318f9b390eba4659b6e56d1153fc.jpg\",\"display_name\":\"LaserEyesDino\"}","created_at":1759415514,"id":"1b4334805a5932c01899aace6d939eca336da81523a65e8069941e69edd81b85","kind":0,"pubkey":"b7b8348658b9de151a0c47bcbb06d9b4b97a40933635abbce80f8fc876a3361f","sig":"2e39d8d5ad9e900c5da6bb1bb04ce42edb622103b6952f453447182a49eaea4dad2d92aac5ca0facb1f887a340a4d04fa3550ba33e1e6ff01f254f97aefa9743","tags":[]}] +[10:31:55.807] RECV nos.lol:443: ["EVENT","pool_2_1759415515",{"content":"{\"name\":\"DrFell (Disgruntled Citizen)✅ï¸\",\"about\":\"Trouble Shooter\\nMake It Stop (MIS)\\nIt's bad, really REALLY Bad!\\nFollow the sequence of events\\nThe path is Dystopian\\nLiars and Deceit\\nThere's a Hole in the Bucket,\\nAnti-Grifter.\",\"picture\":\"https://files.freeatlantis.com/system/accounts/avatars/106/751/578/982/470/127/original/35a12836694cde0f.gif\",\"banner\":\"https://files.freeatlantis.com/system/accounts/headers/106/751/578/982/470/127/original/b5dcecca357375ea.jpeg\",\"nip05\":\"DrFell@freeatlantis-com.mostr.pub\",\"fields\":[]}","created_at":1759415513,"id":"ef95cbdb9644a9591a45bea0cf18c4a2d38a85c1e645b0f2d3f685395bd8443b","kind":0,"pubkey":"559835a377110a8645079433605262f85e1f5915ab8f7459f5bb2500bb2b0369","sig":"33f79f2f031774161b742e4e57ba37dfd086043a3c84a5e3f50aa2e94000e68e44895d034e9cfb90b341ddc4aa619389adfea6077e33b14ba324da0fcd4d6d5f","tags":[["proxy","https://freeatlantis.com/users/DrFell","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[10:31:56.865] RECV nos.lol:443: ["EVENT","pool_2_1759415515",{"content":"{\"name\":\"HebrideanUltraTerfHecate\",\"about\":\"58 year old Hebridean Rad, walked this path since I was 13, you won't get me off it now! Has passion for unsuitable swishy coats, poetry and books, lots and lots of books, and cats, musn't forget the cats. Is known as Esme Weatherwax for a reason.\\n\\nCreag an Sgairbh \\n\\nVirescit Vulnere Virtus \",\"picture\":\"https://media.spinster.xyz/accounts/avatars/000/008/183/original/978416fb1d1d9e9b.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/008/183/original/4e7d48b2ac6341da.jpeg\",\"nip05\":\"HebrideanHecate@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759415514,"id":"504b22f645f379811fc505cbd3bbce1e0c435c2c25bf2e07b7c77aecd48fd362","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"fb1439d6f545e3c3c944e64a91e550e2ba2cbb8a6833c6e0e519591be5af4b6c2ac466410feb666141905d0b3caa28d179e96d10ec51ca3ca80a4ed0dc62006d","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[10:32:01.794] RECV nos.lol:443: ["EVENT","pool_2_1759415515",{"content":"{\"name\":\"Quantum Confusion\",\"about\":\"Eth:\\n0xDbd8BBc0e5e3CDC33B0186afcB1B28e12ea98C67\\nBTC:\\nbc1qvalfeudxgvld23wdpczsuklhspq2aefens2uk3\\n\\nyukiame@coinos.io\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/753/578/507/855/012/original/8024062e6fe49e52.jpg\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/753/578/507/855/012/original/719b58d24334f708.jpg\",\"nip05\":\"yukiame@noauthority-social.mostr.pub\",\"fields\":[[\"Nostr\",\"npub1ykal2phgzf6ljmql6l8khmf0ekf6ny0582r89m00j9vjt8qezhjqqpa3dl\"],[\"pixlfe.social\",\"https://pixelfed.social/yukiame\"],[\"Telegram\",\"https://t.me/yukiame12\"],[\"PayNym\",\"+wanderingfield881\"]]}","created_at":1759415518,"id":"d640f819b6d836265fc7fc8bdd88af252f9f196398f595827c62d47167c015ab","kind":0,"pubkey":"5a1c52d3c5a17028fe8c9a0c0894cbfded353008da86de34e61007a6b4e71796","sig":"c0b620b7a4d2b78ec69101c09c9d8eccd1ef8c64952db15f826fa0958773a83d482e06341ac55ee9e2f7f1b8447a031d17da780a8c042827ef713a8a612c6897","tags":[["proxy","https://noauthority.social/users/yukiame","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[10:32:07.459] RECV nos.lol:443: f6a0","kind":3,"pubkey":"4a6468c5bdfb44a4be2353ecb838 +[10:32:12.320] RECV relay.laantungir.net:443: f6a0","kind":3,"pubkey":"4a6468c5bdfb44a4be2353ecb838 + +=== NOSTR WebSocket Debug Log Started === +[10:54:38.516] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:54:38.516] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:54:38.593] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:54:38.703] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM #nostr #photostr\n\nhttps://image.nostr.build/ea6ed8caf8518739d5f7a4e8fbd7f872caacd120ba5bc3dc46d308bd998ffc6f.jpg","created_at":1759416877,"id":"3374f02d8abf25058fc2cd5b16dacf61a8f775c50f162015ef78a43df1e7dc5f","kind":1,"pubkey":"008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b","sig":"a3db2c7d64ac43a5b82874baab5f9f6904c78338662872aee5c2240661564fc9701e7213fa082fa42c9488d484e700cc763fd602fb1ebc416cfb2680133f5072","tags":[["imeta","url https://image.nostr.build/ea6ed8caf8518739d5f7a4e8fbd7f872caacd120ba5bc3dc46d308bd998ffc6f.jpg","blurhash ezGR6ht7I;s.WC~Bs:R+oeWVxto0oLbHazOWaysoWVfRX8WVjZayay","dim 4032x3024"],["t","nostr"],["t","photostr"],["r","https://image.nostr.build/ea6ed8caf8518739d5f7a4e8fbd7f872caacd120ba5bc3dc46d308bd998ffc6f.jpg"]]}] +[10:54:38.764] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Twilight series by Stephenie Meyer\n\nThat series has done so much damage to the genre, and vampire lore in general, that it should be an example on how NOT to write a story/characters in general, even if the movie adaptions are the greatest comedies of the era. 😈 #writingcommunity #octoberween #halloween #mindsoween #spooktober \n\nhttps://www.minds.com/newsfeed/1820491625321848832","created_at":1759416875,"id":"6f91da1dd7a301f003de0a068c1fe69155b72d868ddcb9b78562a383a0d1c9ed","kind":1,"pubkey":"f1297690a3513d441232fa05bdfb80145164d1d0be63030bccb1fdcebf8ee257","sig":"1983d067aab291ed6e5ce7a22be1c8faee15a81908daacd2f90b3fea5e599ea0a8de27795af8a4f301979e8605cf51b050fbcedf23f6b4678612a2aa022bf141","tags":[["t","writingcommunity"],["t","octoberween"],["t","halloween"],["t","mindsoween"],["t","spooktober"],["r","https://www.minds.com/newsfeed/1820491625321848832"]]}] +[10:54:38.825] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:54:39.121] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"it was fire.","created_at":1759416878,"id":"1e9ab190c0bd450f3a4fb22ed08f7d3ae9e46b584e5dd05b40c8bf8001c26070","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"05d83fca8ee178d6c67ad01ae550011d1bec0d7f0dfbebd8a63122baef5464686e3a3c002515055ffaf78160946f804b71153c343ac43fad7cd583813c0b186b","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","7b1b1c14f7cac03d1f2d9a0bcbbf1edde02cb9cf1670199bc14b2464f59df725","wss://nostr.wine/","reply","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:54:39.735] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‹ã‚ã„ãã†â€¦â€¦","created_at":1759416877,"id":"f5f9621f76ac91774cc52b57a20936c95d48376d69dea42817884963b2898b32","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"f6aa9207abbe60875ad7cb0313784cf014851c931bbe849a092b9cf2bbce4663a330a6305ce7051cc6004ce16dcd14df36e8c1804ed74a34438010b675d6a694","tags":[["alt","A short note: ã‹ã‚ã„ãã†â€¦â€¦"]]}] +[10:54:42.169] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:54:42.280] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:54:51.133] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:54:51.285] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"it was fire.","created_at":1759416878,"id":"1e9ab190c0bd450f3a4fb22ed08f7d3ae9e46b584e5dd05b40c8bf8001c26070","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"05d83fca8ee178d6c67ad01ae550011d1bec0d7f0dfbebd8a63122baef5464686e3a3c002515055ffaf78160946f804b71153c343ac43fad7cd583813c0b186b","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","7b1b1c14f7cac03d1f2d9a0bcbbf1edde02cb9cf1670199bc14b2464f59df725","wss://nostr.wine/","reply","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:54:51.345] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‹ã‚ã„ãã†â€¦â€¦","created_at":1759416877,"id":"f5f9621f76ac91774cc52b57a20936c95d48376d69dea42817884963b2898b32","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"f6aa9207abbe60875ad7cb0313784cf014851c931bbe849a092b9cf2bbce4663a330a6305ce7051cc6004ce16dcd14df36e8c1804ed74a34438010b675d6a694","tags":[["alt","A short note: ã‹ã‚ã„ãã†â€¦â€¦"]]}] +[10:54:51.405] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM #nostr #photostr\n\nhttps://image.nostr.build/ea6ed8caf8518739d5f7a4e8fbd7f872caacd120ba5bc3dc46d308bd998ffc6f.jpg","created_at":1759416877,"id":"3374f02d8abf25058fc2cd5b16dacf61a8f775c50f162015ef78a43df1e7dc5f","kind":1,"pubkey":"008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b","sig":"a3db2c7d64ac43a5b82874baab5f9f6904c78338662872aee5c2240661564fc9701e7213fa082fa42c9488d484e700cc763fd602fb1ebc416cfb2680133f5072","tags":[["imeta","url https://image.nostr.build/ea6ed8caf8518739d5f7a4e8fbd7f872caacd120ba5bc3dc46d308bd998ffc6f.jpg","blurhash ezGR6ht7I;s.WC~Bs:R+oeWVxto0oLbHazOWaysoWVfRX8WVjZayay","dim 4032x3024"],["t","nostr"],["t","photostr"],["r","https://image.nostr.build/ea6ed8caf8518739d5f7a4e8fbd7f872caacd120ba5bc3dc46d308bd998ffc6f.jpg"]]}] +[10:54:51.466] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Twilight series by Stephenie Meyer\n\nThat series has done so much damage to the genre, and vampire lore in general, that it should be an example on how NOT to write a story/characters in general, even if the movie adaptions are the greatest comedies of the era. 😈 #writingcommunity #octoberween #halloween #mindsoween #spooktober \n\nhttps://www.minds.com/newsfeed/1820491625321848832","created_at":1759416875,"id":"6f91da1dd7a301f003de0a068c1fe69155b72d868ddcb9b78562a383a0d1c9ed","kind":1,"pubkey":"f1297690a3513d441232fa05bdfb80145164d1d0be63030bccb1fdcebf8ee257","sig":"1983d067aab291ed6e5ce7a22be1c8faee15a81908daacd2f90b3fea5e599ea0a8de27795af8a4f301979e8605cf51b050fbcedf23f6b4678612a2aa022bf141","tags":[["t","writingcommunity"],["t","octoberween"],["t","halloween"],["t","mindsoween"],["t","spooktober"],["r","https://www.minds.com/newsfeed/1820491625321848832"]]}] +[10:54:51.526] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:54:58.118] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Those four words especially, \"it is their duty\" -- I think about often.","created_at":1759416897,"id":"278c693160f0e92b56c18b693bb9bf0ee6927ee90b82245367040e12d3a9d1bd","kind":1,"pubkey":"eda96cb93aecdd61ade0c1f9d2bfdf95a7e76cf1ca89820c38e6e4cea55c0c05","sig":"d55027a15c101b7b0342b0b70cff5656fb0b2ef5948cb46941cb7956f1071725a24dc36de7ecb921cd919e76c115020f9abb351891e1fc2dc0316323341f909a","tags":[["e","23db722efe82ec9a19307c106efc437a84c680a7d2e6c426560efe8808429180","wss://nos.lol/","root","67ada8e344532cbf82f0e702472e24c7896e0e1c96235eacbaaa4b8616052171"],["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7"],["p","67ada8e344532cbf82f0e702472e24c7896e0e1c96235eacbaaa4b8616052171"]]}] +[10:55:00.394] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 23:55 ------------✄","created_at":1759416900,"id":"40dc4100b8816aed550f38f2f8db96c42294df3640a3a896eab92bcf1ff9ca2c","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"eb8993836ebe9b81865fd8dbba1a7674fcb03a612e9168b554e0cf1afbddce28a406e5ea73d9b559616bbc91f53e808e13c80aee89cfb9b28d9ecb163d9fd346","tags":[]}] +[10:55:00.457] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"“Economics cannot be severed from ethics and politics.†- Ludwig von Mises\n\nFor Core devs, Bitcoin’s economics boil down to incentives alone. Strip ethics out of the equation and those incentives don’t create order - they create marauders.","created_at":1759416899,"id":"9d0a4ca393984e7b545b3b3ef5a03bbd169a84e9621eff4e0dbb78008b9cffb1","kind":1,"pubkey":"314072c16fa9433e1374f62e5b02c8163946ed298a9cde3b1541513c29d19fff","sig":"cd6ca4316a78e805eb76b6b62212385891c941e28e831f97a7eb2ba848ae9afa184f248d417ccdbb682e2565ab9cf95267964b48e53bc05582dc86dd1f3b4772","tags":[]}] +[10:55:05.449] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"眠ã„ã‘ã©å¯ã‚‹ã«è‡³ã‚‰ãªã„ãªâ€¦â€¦","created_at":1759416903,"id":"2f5924591136283707a4658828de8e9af5dfbb322afb9fe6618d36e381554d95","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"380efbc4b42edf1345a760139f4cfeca5136a2bbc81417cb08fe7e65621df28a7239d58dfd1165af50c28ac2859cfbf3341300d07afe732a8432bd265f13076c","tags":[["alt","A short note: 眠ã„ã‘ã©å¯ã‚‹ã«è‡³ã‚‰ãªã„ãªâ€¦â€¦"]]}] +[10:55:06.284] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://media1.tenor.com/m/dXkKnk4UuV8AAAAC/shut-up-and-take-my-money.gif","created_at":1759416905,"id":"834a834f537abc6a65b9e2c713a80540697f826636ac37b9882cb9b09441c56a","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"88dfd4d3f212b9c398bcdc706a2007a1a210133ba5640f218d26c115a03108f36d8d844dee61e95d98d285622b296681fa2c18a626adbbf0ffba888bcd5c87b1","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","265c0fa799e6880481644b7295e594b00fbcd65fd32bc3322bea15d6134401a0","wss://nostr.wine/","reply","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:55:06.456] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thank you so much! I really appreciate your feedback. Have a great day.","created_at":1759416907,"id":"6b60c2d7d61e7d6db2c347f0329181221f3199fbb02b43cc79170195958c13f3","kind":1,"pubkey":"f73c257dc0df366468d43ab40294eeccf86df6db097bcbd7f9aff664aaa26b19","sig":"68966006780ba658612b03c0a30ac4a875ba4d5199d36c00f801ecfd5a0a72035a6ee7111be679b2b255184542276c4eeaa0ea3331cdd3cd1fc5bb1d5cb35340","tags":[["a","30023:f73c257dc0df366468d43ab40294eeccf86df6db097bcbd7f9aff664aaa26b19:KrcSgruMeiZ3oZ6lK4UfS","","root"],["p","f73c257dc0df366468d43ab40294eeccf86df6db097bcbd7f9aff664aaa26b19","","mention"],["e","057ab7bd182b5b4ddcf585e0e7480c8db847c2b969c118a16e076d07db0d0c13","","reply"],["p","de2693ab284a98ec6efb632c5747067d939bf42907d4b52a7337d211db15c09d"]]}] +[10:55:10.381] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"If he allowed Grok to directly learn from people and without supervised fine tuning or preference optimization with BS, Grok would be a lot better. But since Grok is getting worse and it is a black box to the outsiders, the idea that it should be source of truth is pretty dangerous.\n\nHe shows the problem, offers his AI as the solution but who is deciding what goes into that AI? Is anybody measuring these things? I will claim it is detached from combined opinion on X (because I am measuring things). xAI team is not learning from popular accounts on X or they are not properly giving weight to popular accounts on X.\n\nAn example of directly learning from a social media is my Nostr LLM. I plan to update it with newer notes and base upon better models. But it is not perfect because Nostr content is not enough to completely change opinions of a model in a lot of domains (yet). It will get better though over time. \n\n* BS: belief system\n \n\nnostr:nevent1qqswn3xls5f5cmhku8k7eu7tth7zvdrja7qar07rse7fzrg7ueag2ucpz4mhxue69uhkummnw3ezuerpw3sju6rpw4esygyu5z7hg5r5944zqvvupc75ceuunczx48w8p6802hpfqh3yq535pvpsgqqqqqqs0849yh","created_at":1759416909,"id":"f64d06b260d25c729b8349d44d3986f3cd0f10816a2156f837a2ff2ee932ae13","kind":1,"pubkey":"9fec72d579baaa772af9e71e638b529215721ace6e0f8320725ecbf9f77f85b1","sig":"3c4070e6759e846d6bb120db64c125e1646d1afa90c9e19e043c33f5a6a0d6c423e9db8943864aa038ca8d7d4ef8ff7d54576c0c6d8e729f05f77cc4d1d1bc16","tags":[["e","e9c4df85134c6ef6e1edecf3cb5dfc263472ef81d1bfc3867c910d1ee67a8573","wss://nostr.data.haus","mention","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[10:55:12.162] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:55:12.273] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:55:13.744] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the list I mentioned are the one's I have persona experience. I do not follow one particular doctrine. I know the topics above by personal experience and some by curiosity. Only by practical experience I seek to understand. Aside remote viewing, do you have other experience from the list? \n\n","created_at":1759416913,"id":"fbc9cf66b136d448c380ce6331152a1efb2eea6051f5ee542daf8f4d7dbba109","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"cc6597fe7581493c3f865c6b34090b7d9034f7f01d6cf7f143e1b47b41a9cd152d173d8e53adb03352a9d7fd505c440e2e9f926ad97b49f1038dffa3f0d020e6","tags":[["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","","mention"],["p","71afb52ea4e9fb2ce51fbba86893261df322bb464dcf836584df0c290c076411","wss://relay.primal.net"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","55e3599887ca532c08bfe2281ccc9b642e21d962596c831fe960c0c1b2ebe6e5","wss://relay.primal.net","reply","71afb52ea4e9fb2ce51fbba86893261df322bb464dcf836584df0c290c076411"],["e","b157b76e50f570bf9209e44e1841162be18916e7a7f2d0a2ebdb69b3a538cdd0","","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"]]}] +[10:55:15.022] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/a92c4a16a24ef656a5bcce64de6d9b12081a675271a3335eada1a605b2dfbfc3.jpg","created_at":1759416914,"id":"e45d5a2106b4586bb16f4334e7247ce6377aafd3a4b9dfb7da03912d28873a59","kind":1,"pubkey":"88856c5a265dbefa6553a85ae3525c648498cefdd403152e062ed8db0a256a14","sig":"fbd47bd4ad6290e5548bc49caedeaa479f1bb11411312a21d7f9a218b579309eb80be74996a3d0ad1ed926bfc0b5f5470defce53548a4f74ce17ced7c54bca55","tags":[]}] +[10:55:15.194] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔔 EvropÅ¡tí lídÅ™i jednali v Kodani o UkrajinÄ› Äi nelegální migraci: \n\nEvropské politické Å¡piÄky ve Ätvrtek na summitu Evropského politického spoleÄenství (EPC) v Kodani jednali o situaci na UkrajinÄ›, zvýšení tlaku na Rusko i o boji s nelegální migrací. Ukrajinský prezident Volodymyr Zelenskyj pÅ™i příjezdu na jednání Å™ekl, že Rusko chce eskalovat válku a rozdÄ›lit Evropu. Dánská premiérka Mette Frederiksenová zopakovala, že v EvropÄ› probíhá hybridní válka. \nhttps://ct24.ceskatelevize.cz/clanek/svet/evropsti-lidri-jednali-v-kodani-o-ukrajine-ci-nelegalni-migraci-365659 \n#CzechNews #News #Press #Media","created_at":1759416895,"id":"a59d85893eaa3f9642eb836bc45276702200cccdf3b7ff745229c2ee8433b802","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"9f2498a0e86c0a0899d664c5f7699f9903c118b5f9b87a8deb75dddd3ba63cf5aa96294c4a963616dc4ec380b134432fe6ebcb45bba1b077a453409a3b4a26b0","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[10:55:15.808] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The code is the code. ","created_at":1759416915,"id":"785b900f30e70ddeb9afe86342ab077d47b6c6f799b1a58180da1f40f91b5a31","kind":1,"pubkey":"6f14a106eef6be9e2fd1a4162f38adf5bd43d3ceb245cc25a0210c4475915122","sig":"594ccb1bafe50a1f2d3998bffc7a193934ade7b13912bb1165824b865bf4772ba94eccbf0074ce4b19e66c36ba105b7e90ec28465044b40e1a224a05d7a6834d","tags":[]}] +[10:55:15.869] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://blossom.primal.net/6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad.jpg\nnostr:nevent1qqsxfz6tl0vxlqrwvcj02wgvrvgqlazymykj6ccdwhggnkx3hcy44gspr9mhxue69uhhqun9d45h2mfwwpexjmtpdshxuet59upzqqqcklhr87e98ppk88rzu2f0a3cq56df8vywud6vt0dfw8ym89tyqvzqqqqqqyhxezvx","created_at":1759416915,"id":"aaa602a8d88461758d5ab3b2f5a7047f46f3b60122b39d07f34eb991a9ee9e3a","kind":1,"pubkey":"0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","sig":"d22fcd82a5af6031855b3a7d0fc0fbcd5e5bc1b31ad8678b17f4ac963ec3f435e100a26997521652e464f55c29c42e61d003d8049c04e2e7f4c93429513fa339","tags":[["alt","A short note: https://blossom.primal.net/6b1721d93284c661beee4a2..."],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://premium.primal.net/"],["r","https://blossom.primal.net/6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad.jpg"],["q","648b4bfbd86f806e6624f5390c1b100ff444d92d2d630d75d089d8d1be095aa2","wss://premium.primal.net/","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"],["imeta","url https://blossom.primal.net/6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad.jpg","x 6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad","size 57848","m image/jpeg","dim 1050x689","blurhash r471i*~pVrROD$RjkCbHIV%2xYw[xCt6xuozRjR*IT-:%0Mxoeayj]t7oz9Ft7xaRiofkCt7t6t7.8tRWBM{IVozxuj?WA.8D*E1kWW=WWM{t7s:","ox 6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad","alt "]]}] +[10:55:16.308] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Loser https://image.nostr.build/e8232f8e51edeb21320c2a5163e84899996133e5ba35f65e9e0afbc75466fca2.jpg","created_at":1759416916,"id":"b88f7988e74de8c6a534bced0485e0045650a8c7037cc247f04f96d43850ce8c","kind":1,"pubkey":"cc53f373a72a82b7fb07d6efd6c8f07b32316e4ede4f9cfa908449554ff2ada5","sig":"60b7df2f46dcbcca892996b60c16f7a18945e9cf23d6f97fbc6056f406318b29b9b4378777dfe819a9319a611033e957e07c28405d947e76274b21c814637923","tags":[["alt","A short note: Loser https://image.nostr.build/e8232f8e51edeb2132..."],["e","3749028966d45395d17b29535579cf0f027af8ec63fbdf1c159d9db3456ad57c","wss://nostr.bitcoiner.social/","root","cc53f373a72a82b7fb07d6efd6c8f07b32316e4ede4f9cfa908449554ff2ada5"],["p","cc53f373a72a82b7fb07d6efd6c8f07b32316e4ede4f9cfa908449554ff2ada5","wss://relay.utxo.one/"],["r","https://image.nostr.build/e8232f8e51edeb21320c2a5163e84899996133e5ba35f65e9e0afbc75466fca2.jpg"],["imeta","url https://image.nostr.build/e8232f8e51edeb21320c2a5163e84899996133e5ba35f65e9e0afbc75466fca2.jpg","x 2a493e64472c729b004b75c9d63f5ca95ff4f7595fc6f1755b794a21db84f1d2","size 143648","m image/jpeg","dim 1080x2400","blurhash [66*UK.7InDi~W%gNGD%V?x]NGIUM{RjxaxaE1Dixt-;0KIBxu-;4.M|ju%MIoM{xaxuxaV@s:ax","ox 2a493e64472c729b004b75c9d63f5ca95ff4f7595fc6f1755b794a21db84f1d2","alt "]]}] +[10:55:18.472] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqsq73uu0hlhhdfa4efl8wej45gsnmdmq7a9v27a295qgjelgdjw0dgpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhszymhwden5te0wp6hyurvv4cxzeewv4ej7ux4nr9\nhttps://pareto.space/read","created_at":1759416918,"id":"6d85f2245ef70ca8c92005ceca2fd829fece3a6bbc2550b9b68f6af15dfc797b","kind":1,"pubkey":"dfc428b2e21b2b2a0e0a6f9f0e4d54a82eea42bf5415dda75336b11c8427ad43","sig":"cc07e9abe6ccbfbc00cf4b03e0ffc4575a1f5898313c66b20a7c0475aa4d6d6fea36f3c8002da1715b4dc4e24af586fa55361df79c69515454461357e9cfac98","tags":[["alt","A short note: nostr:nprofile1qqsq73uu0hlhhdfa4efl8wej45gsnmdmq7a..."],["e","861460c840f10d6137f21d8260fab801d81df4f6166528d186ba4562c592edec","wss://relay.primal.net/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://xmr.ithurtswhenip.ee/"],["p","0f479c7dff7bb53dae53f3bb32ad1109edbb07ba562bdd5168044b3f4364e7b5","wss://relay.nostr.band/"],["p","0f479c7dff7bb53dae53f3bb32ad1109edbb07ba562bdd5168044b3f4364e7b5","wss://relay.nostr.band/"],["r","https://pareto.space/read"]]}] +[10:55:21.189] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:55:21.521] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqsq73uu0hlhhdfa4efl8wej45gsnmdmq7a9v27a295qgjelgdjw0dgpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhszymhwden5te0wp6hyurvv4cxzeewv4ej7ux4nr9\nhttps://pareto.space/read","created_at":1759416918,"id":"6d85f2245ef70ca8c92005ceca2fd829fece3a6bbc2550b9b68f6af15dfc797b","kind":1,"pubkey":"dfc428b2e21b2b2a0e0a6f9f0e4d54a82eea42bf5415dda75336b11c8427ad43","sig":"cc07e9abe6ccbfbc00cf4b03e0ffc4575a1f5898313c66b20a7c0475aa4d6d6fea36f3c8002da1715b4dc4e24af586fa55361df79c69515454461357e9cfac98","tags":[["alt","A short note: nostr:nprofile1qqsq73uu0hlhhdfa4efl8wej45gsnmdmq7a..."],["e","861460c840f10d6137f21d8260fab801d81df4f6166528d186ba4562c592edec","wss://relay.primal.net/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://xmr.ithurtswhenip.ee/"],["p","0f479c7dff7bb53dae53f3bb32ad1109edbb07ba562bdd5168044b3f4364e7b5","wss://relay.nostr.band/"],["p","0f479c7dff7bb53dae53f3bb32ad1109edbb07ba562bdd5168044b3f4364e7b5","wss://relay.nostr.band/"],["r","https://pareto.space/read"]]}] +[10:55:21.581] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Loser https://image.nostr.build/e8232f8e51edeb21320c2a5163e84899996133e5ba35f65e9e0afbc75466fca2.jpg","created_at":1759416916,"id":"b88f7988e74de8c6a534bced0485e0045650a8c7037cc247f04f96d43850ce8c","kind":1,"pubkey":"cc53f373a72a82b7fb07d6efd6c8f07b32316e4ede4f9cfa908449554ff2ada5","sig":"60b7df2f46dcbcca892996b60c16f7a18945e9cf23d6f97fbc6056f406318b29b9b4378777dfe819a9319a611033e957e07c28405d947e76274b21c814637923","tags":[["alt","A short note: Loser https://image.nostr.build/e8232f8e51edeb2132..."],["e","3749028966d45395d17b29535579cf0f027af8ec63fbdf1c159d9db3456ad57c","wss://nostr.bitcoiner.social/","root","cc53f373a72a82b7fb07d6efd6c8f07b32316e4ede4f9cfa908449554ff2ada5"],["p","cc53f373a72a82b7fb07d6efd6c8f07b32316e4ede4f9cfa908449554ff2ada5","wss://relay.utxo.one/"],["r","https://image.nostr.build/e8232f8e51edeb21320c2a5163e84899996133e5ba35f65e9e0afbc75466fca2.jpg"],["imeta","url https://image.nostr.build/e8232f8e51edeb21320c2a5163e84899996133e5ba35f65e9e0afbc75466fca2.jpg","x 2a493e64472c729b004b75c9d63f5ca95ff4f7595fc6f1755b794a21db84f1d2","size 143648","m image/jpeg","dim 1080x2400","blurhash [66*UK.7InDi~W%gNGD%V?x]NGIUM{RjxaxaE1Dixt-;0KIBxu-;4.M|ju%MIoM{xaxuxaV@s:ax","ox 2a493e64472c729b004b75c9d63f5ca95ff4f7595fc6f1755b794a21db84f1d2","alt "]]}] +[10:55:21.642] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://blossom.primal.net/6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad.jpg\nnostr:nevent1qqsxfz6tl0vxlqrwvcj02wgvrvgqlazymykj6ccdwhggnkx3hcy44gspr9mhxue69uhhqun9d45h2mfwwpexjmtpdshxuet59upzqqqcklhr87e98ppk88rzu2f0a3cq56df8vywud6vt0dfw8ym89tyqvzqqqqqqyhxezvx","created_at":1759416915,"id":"aaa602a8d88461758d5ab3b2f5a7047f46f3b60122b39d07f34eb991a9ee9e3a","kind":1,"pubkey":"0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","sig":"d22fcd82a5af6031855b3a7d0fc0fbcd5e5bc1b31ad8678b17f4ac963ec3f435e100a26997521652e464f55c29c42e61d003d8049c04e2e7f4c93429513fa339","tags":[["alt","A short note: https://blossom.primal.net/6b1721d93284c661beee4a2..."],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://premium.primal.net/"],["r","https://blossom.primal.net/6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad.jpg"],["q","648b4bfbd86f806e6624f5390c1b100ff444d92d2d630d75d089d8d1be095aa2","wss://premium.primal.net/","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"],["imeta","url https://blossom.primal.net/6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad.jpg","x 6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad","size 57848","m image/jpeg","dim 1050x689","blurhash r471i*~pVrROD$RjkCbHIV%2xYw[xCt6xuozRjR*IT-:%0Mxoeayj]t7oz9Ft7xaRiofkCt7t6t7.8tRWBM{IVozxuj?WA.8D*E1kWW=WWM{t7s:","ox 6b1721d93284c661beee4a2383e78a299300a8afd16d58e50a6779b01f2a85ad","alt "]]}] +[10:55:21.702] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The code is the code. ","created_at":1759416915,"id":"785b900f30e70ddeb9afe86342ab077d47b6c6f799b1a58180da1f40f91b5a31","kind":1,"pubkey":"6f14a106eef6be9e2fd1a4162f38adf5bd43d3ceb245cc25a0210c4475915122","sig":"594ccb1bafe50a1f2d3998bffc7a193934ade7b13912bb1165824b865bf4772ba94eccbf0074ce4b19e66c36ba105b7e90ec28465044b40e1a224a05d7a6834d","tags":[]}] +[10:55:21.763] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/a92c4a16a24ef656a5bcce64de6d9b12081a675271a3335eada1a605b2dfbfc3.jpg","created_at":1759416914,"id":"e45d5a2106b4586bb16f4334e7247ce6377aafd3a4b9dfb7da03912d28873a59","kind":1,"pubkey":"88856c5a265dbefa6553a85ae3525c648498cefdd403152e062ed8db0a256a14","sig":"fbd47bd4ad6290e5548bc49caedeaa479f1bb11411312a21d7f9a218b579309eb80be74996a3d0ad1ed926bfc0b5f5470defce53548a4f74ce17ced7c54bca55","tags":[]}] +[10:55:21.823] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the list I mentioned are the one's I have persona experience. I do not follow one particular doctrine. I know the topics above by personal experience and some by curiosity. Only by practical experience I seek to understand. Aside remote viewing, do you have other experience from the list? \n\n","created_at":1759416913,"id":"fbc9cf66b136d448c380ce6331152a1efb2eea6051f5ee542daf8f4d7dbba109","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"cc6597fe7581493c3f865c6b34090b7d9034f7f01d6cf7f143e1b47b41a9cd152d173d8e53adb03352a9d7fd505c440e2e9f926ad97b49f1038dffa3f0d020e6","tags":[["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","","mention"],["p","71afb52ea4e9fb2ce51fbba86893261df322bb464dcf836584df0c290c076411","wss://relay.primal.net"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","55e3599887ca532c08bfe2281ccc9b642e21d962596c831fe960c0c1b2ebe6e5","wss://relay.primal.net","reply","71afb52ea4e9fb2ce51fbba86893261df322bb464dcf836584df0c290c076411"],["e","b157b76e50f570bf9209e44e1841162be18916e7a7f2d0a2ebdb69b3a538cdd0","","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"]]}] +[10:55:21.884] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"If he allowed Grok to directly learn from people and without supervised fine tuning or preference optimization with BS, Grok would be a lot better. But since Grok is getting worse and it is a black box to the outsiders, the idea that it should be source of truth is pretty dangerous.\n\nHe shows the problem, offers his AI as the solution but who is deciding what goes into that AI? Is anybody measuring these things? I will claim it is detached from combined opinion on X (because I am measuring things). xAI team is not learning from popular accounts on X or they are not properly giving weight to popular accounts on X.\n\nAn example of directly learning from a social media is my Nostr LLM. I plan to update it with newer notes and base upon better models. But it is not perfect because Nostr content is not enough to completely change opinions of a model in a lot of domains (yet). It will get better though over time. \n\n* BS: belief system\n \n\nnostr:nevent1qqswn3xls5f5cmhku8k7eu7tth7zvdrja7qar07rse7fzrg7ueag2ucpz4mhxue69uhkummnw3ezuerpw3sju6rpw4esygyu5z7hg5r5944zqvvupc75ceuunczx48w8p6802hpfqh3yq535pvpsgqqqqqqs0849yh","created_at":1759416909,"id":"f64d06b260d25c729b8349d44d3986f3cd0f10816a2156f837a2ff2ee932ae13","kind":1,"pubkey":"9fec72d579baaa772af9e71e638b529215721ace6e0f8320725ecbf9f77f85b1","sig":"3c4070e6759e846d6bb120db64c125e1646d1afa90c9e19e043c33f5a6a0d6c423e9db8943864aa038ca8d7d4ef8ff7d54576c0c6d8e729f05f77cc4d1d1bc16","tags":[["e","e9c4df85134c6ef6e1edecf3cb5dfc263472ef81d1bfc3867c910d1ee67a8573","wss://nostr.data.haus","mention","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[10:55:21.944] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thank you so much! I really appreciate your feedback. Have a great day.","created_at":1759416907,"id":"6b60c2d7d61e7d6db2c347f0329181221f3199fbb02b43cc79170195958c13f3","kind":1,"pubkey":"f73c257dc0df366468d43ab40294eeccf86df6db097bcbd7f9aff664aaa26b19","sig":"68966006780ba658612b03c0a30ac4a875ba4d5199d36c00f801ecfd5a0a72035a6ee7111be679b2b255184542276c4eeaa0ea3331cdd3cd1fc5bb1d5cb35340","tags":[["a","30023:f73c257dc0df366468d43ab40294eeccf86df6db097bcbd7f9aff664aaa26b19:KrcSgruMeiZ3oZ6lK4UfS","","root"],["p","f73c257dc0df366468d43ab40294eeccf86df6db097bcbd7f9aff664aaa26b19","","mention"],["e","057ab7bd182b5b4ddcf585e0e7480c8db847c2b969c118a16e076d07db0d0c13","","reply"],["p","de2693ab284a98ec6efb632c5747067d939bf42907d4b52a7337d211db15c09d"]]}] +[10:55:22.005] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://media1.tenor.com/m/dXkKnk4UuV8AAAAC/shut-up-and-take-my-money.gif","created_at":1759416905,"id":"834a834f537abc6a65b9e2c713a80540697f826636ac37b9882cb9b09441c56a","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"88dfd4d3f212b9c398bcdc706a2007a1a210133ba5640f218d26c115a03108f36d8d844dee61e95d98d285622b296681fa2c18a626adbbf0ffba888bcd5c87b1","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","265c0fa799e6880481644b7295e594b00fbcd65fd32bc3322bea15d6134401a0","wss://nostr.wine/","reply","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:55:22.065] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"眠ã„ã‘ã©å¯ã‚‹ã«è‡³ã‚‰ãªã„ãªâ€¦â€¦","created_at":1759416903,"id":"2f5924591136283707a4658828de8e9af5dfbb322afb9fe6618d36e381554d95","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"380efbc4b42edf1345a760139f4cfeca5136a2bbc81417cb08fe7e65621df28a7239d58dfd1165af50c28ac2859cfbf3341300d07afe732a8432bd265f13076c","tags":[["alt","A short note: 眠ã„ã‘ã©å¯ã‚‹ã«è‡³ã‚‰ãªã„ãªâ€¦â€¦"]]}] +[10:55:22.126] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:55:22.186] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Global markets shrugged off US shutdown fears and a softer-than-expected ADP jobs print, as optimism around AI deals lifted tech and chip names. A new OpenAI agreement with Korean chipmakers rekindled interest in semiconductors, while European benchmarks outpaced US peers: DAX, CAC40 and AEX rose more than 1% today, even as key US indexes slowed in the afternoon. Gold remains in an uptrend and bond yields sit slightly above yesterday’s levels. \n\nTop performers in Europe included ASM International, Infineon, BE Semi, Siemens, Stellantis and LVMH. Currency moves saw the dollar strengthen toward 1.1700 per euro (USD/EUR 1.1716 at 16:29 CET), the Czech koruna held around CZK/EUR 24.2781 and CZK/USD 20.7250. Japan’s JPY/EUR was 172.4070 and other FX changes were modest. \n\nMarket participants appear to have judged the economic impact of the US shutdown as limited and treated ADP’s weak reading as an imprecise signal ahead of official data, keeping focus on AI-driven gains and a broad European sectoral advance. #OpenAI #semiconductors #DAX #EURUSD #FiatNews","created_at":1759416902,"id":"675a03190cabbdf229a13003bcf72dbf0a6552f85304f51a0eff3369678efc18","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"a8407f3b7d7e14f0586175d87c8581a4af44df042c7f96c4bb481e506c7f9b1bf3b08b063f2e956ecf681379fbcdf56185f10597af141ff3eff787c4f78958c6","tags":[["t","OpenAI"],["t","openai"],["t","semiconductors"],["t","DAX"],["t","dax"],["t","EURUSD"],["t","eurusd"],["t","FiatNews"],["t","fiatnews"]]}] +[10:55:22.911] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I think so. I would make two bets about where we’ll be in 10 years and am trying to figure out the implications:\n\n- Block space will be massively more valuable than today, as tools built around digital permanence become more prevalent. Almost all monetary transactions will be fully ‘packed / joined’ with many inputs and outputs, which spam transactions of today don’t need to compete with.\n\n- Mining will be massively more decentralized than today making it harder/more costly to route around nodes. \n\nI dont think the second one matters so much as it relates to spam, as we only need a small minority of nodes to propagate transactions based on likelihood of mining vs a qualitative assessment of what’s inside, in order for it to be mined.","created_at":1759416922,"id":"bb990a6069034c5f13ed74d6a20ae8faadfe69a260818138e85978bf6f7700ee","kind":1,"pubkey":"9a98e65b211f0a455b869ee06eec2a99b24315ce684530dc5e7db9899fb678e3","sig":"6a7f958b0ea83beddce1b612b6a5bfcb371b77d27a756b1c2cf117f3529ca89c156c29e95f843f3f94cc0302e93c791f5036eda39d73e9b1f610b2bbad179264","tags":[["e","7887e6db72e2389f67c06ee2f4f5017eb1ba8b5d0a58707ca638c898945efad1","","root"],["e","184cf41de9a44ab6647af6370156c747a24a32d587a1ffc6d68fef1d322e6558","","reply"],["p","b481d853bdd549c8cad18dcc1fb1fc8dba6e96b60278fcec388bb15967f95a2d"]]}] +[10:55:23.084] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã®ï¼","created_at":1759416923,"id":"88d55d9156cbf62a1c442f32350e613c0c7632b7819363de3f8a3027d4e434e3","kind":1,"pubkey":"7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f","sig":"a7e04f4f5a97b21dff59a5b46aaadf68f6a5b31b439b7afc13990c1a4a0a3a25b20443ea5bdaf9da741d52f726d7afab377bdd73f9a4bd43bf0496936ab347b2","tags":[["alt","A short note: ã‚ã®ï¼"]]}] +[10:55:23.588] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"We’d love to see Cleveland Bitcoin create a community site with it! Let nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 know if you have questions or need help!","created_at":1759416923,"id":"11785c2975fd15b8a0a13241f661f2caccc18d73da278cb3aef4f81ee13beee9","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"7425fd6fe44bd3cbc2e44d088a629ab1e07ec4c66905e0d8c78c21458401f08531e6300851b74dc817cf73add30fdfba09a574f6a7bd4a433f027c32d28aaf58","tags":[["e","79c0c4293b0a20705a2180b27f809ff5bac834324309c6d312d7d73bcf95d4ec","","root"],["e","1599afc78fa5c343c2f08147f0fe83eeae31d9865d12a9ca7c563bf4a6d0f5b7","","reply"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","86184109eae937d8d6f980b4a0b46da4ef0d983eade403ee1b4c0b6bde238b47"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dcf5c73b834eb851f2"],["p","5d39170696978f274f81b8534ddccf7cdce5a5c0a69ba91fab9f0e5436b4abb1"],["p","0461fcbecc4c3374439932d6b8f11269ccdb7cc973ad7a50ae362db135a474dd"],["p","781a1527055f74c1f70230f10384609b34548f8ab6a0a6caa74025827f9fdae5"],["p","932614571afcbad4d17a191ee281e39eebbb41b93fac8fd87829622aeb112f4d"],["p","be7358c4fe50148cccafc02ea205d80145e253889aa3958daafa8637047c840e"],["p","2093baa8621c5b255e8f4fc2c6fdfc10d8a5598a25517664efaba860735f1030"],["p","47259076c85f9240e852420d7213c95e95102f1de929fb60f33a2c32570c98c4"],["p","0574536d3ef4d65faf95b42393610b8475d22f4c294649d46c50d5d36f75267c"],["p","f1989a96d75aa386b4c871543626cbb362c03248b220dc9ae53d7cefbcaaf2c1"],["p","9ffaa6394e6d31cb59aa3b26cf1c9f2cb0c2ead7f9a01749d1fcc5bf773d4b9c"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:55:23.649] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Let go, be free, do you have fun? And most importantly, spread love.","created_at":1759416922,"id":"5e325d9c28fd60dc88419d09d86552dd41848ca7946ffc9284368959ed881158","kind":1,"pubkey":"db1e72042b0f4fa2d0d2be371aa1e8f3cbc416f17b9e943967e2209043e9d1b7","sig":"a29e71177b87c56e52875f1fd8ef6ae32369652540c36d053e6a0e1a427e753b892d1a3c408eb17d2d37600b375292b3339261b4d76ff08e441a46d89808915c","tags":[]}] +[10:55:27.031] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can challenge the local assessment. Go to them and tell them everything wrong about your house and how much it would cost to fix it.","created_at":1759416927,"id":"5754e3326c36245c88ddc3c9dad60bcf56c99d160d2459a158f89b9020a17d60","kind":1,"pubkey":"edb470271297ac5a61f277f3cd14de54c67eb5ccd20ef0d9df29be18685bb004","sig":"efb4e3d3971bfb31f187157a0679acfaceb90edf28cc6eb3a954c6785fa69d94344bb4a134c25ffa662e05de107a0d42e6eedad8753c65650a71d1b393cc82b5","tags":[["alt","A short note: You can challenge the local assessment. Go to them..."],["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://relay.bitcoindistrict.org/","root","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","wss://eden.nostr.land/"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://theforest.nostr1.com/"]]}] +[10:55:35.235] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"It was freaking wild. I never stopped with the low rise, but everything else is done 😂","created_at":1759416934,"id":"91758a630133ae9a8644688f4e2170dc44e4ba0d8c9b3331d3381a451b6a9ebf","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"6da72f5742946ee60f0847b142b7a8ecf60cd3046b7c3f63c9497ccf6eea4ba9ffb357e4d8a49ee0c958b3e0f6651b31a7498470753908aa0a636bab57e995a5","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root"],["e","2c71000041a7f6c41b4981d74c3e0b9093c33d313f0392afc6dcf75af779895e","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[10:55:38.661] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂","created_at":1759416938,"id":"aa041e6e0c208284a70456793519ac6cbd99f44081b17bfb1cdf36df7a81ef27","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"50bafd26bca5aa997f3dc6713bef3b3aee5ff78cd2d106afb5c5e9b7b6242ff85c260b00705251d5c3337d093e1603a5dd7fec242446696a95bcf909665c7fbe","tags":[["e","5bca9a84e84639baedd7681b54498c06b69d13c1ac1fcdc5161c8e0cfede9ea3","wss://relay.primal.net","root"],["e","0dee4a80ce64cff79eeb891386524be9cd9ca353479d6b11db7e0f192cb88794","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","df478568479de26b4a83c1bdc4dbab61b5cc82e1a312e2b28bc815a12a951e67"]]}] +[10:55:38.867] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \n\n\n\nhttps://blossom.primal.net/7db35fe5c094eb418916b76325690f1f76dffa8b6c9485913570b53ff60d833a.jpg","created_at":1759416935,"id":"cb25ba0a6936496a798b811c10688ace2a0f5774b3dc9cbdbfc1bf2595c95b13","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"f1fe21c63579229cc3a3509778b697fd628a6c4d031b10546f7745bad44765f2449e98ec28330ad59dffff7e59458b88f100cbdc0db3a8706cc7474ea3d4a448","tags":[["imeta","url https://blossom.primal.net/7db35fe5c094eb418916b76325690f1f76dffa8b6c9485913570b53ff60d833a.jpg","m image/jpeg","ox 7db35fe5c094eb418916b76325690f1f76dffa8b6c9485913570b53ff60d833a","dim 853x1280"]]}] +[10:55:41.021] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"室内ãªã®ã«è‹¥å¹²å¯’ã„ã‚“ã§ã™ãŒã€ã“れã¯â€¦ï¼Ÿ","created_at":1759416941,"id":"f1532f255d2251e821e6561d3307bd27390cded349bbf206e3c7d35530511a54","kind":1,"pubkey":"7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f","sig":"e193a98eb70ec6686c8dcc87a4064878d02b11dc9c29687e45b40d7cef80eff45333877c06dc5bc3e5368ae1006b28c2f7c1787486cd6aa9038c25f5fecc5501","tags":[["alt","A short note: 室内ãªã®ã«è‹¥å¹²å¯’ã„ã‚“ã§ã™ãŒã€ã“れã¯â€¦ï¼Ÿ"]]}] +[10:55:42.138] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:55:42.249] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:55:42.803] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#gm,\n\nfor every year you work beyond 55, your average life expectancy drops by two years\n\nmake it your duty to retire - or at least stop working dead-end, high stress jobs - by 55\n\npreferably, 50\n\nhttps://image.nostr.build/ac28180127247424a18f8a27097aa81210e5942f0aa3082efc52c300f79817cd.jpg","created_at":1759416942,"id":"7bd1ec89d232c85015b5d0717878b1f52c31407001f3aaf354fa34401f6b5236","kind":1,"pubkey":"2f02d76f09666ae076e65beb60ff195eb7f44b51c73147a6a37748bfabd60a7c","sig":"69e2331b8466ae128e6daf53b0ce840b69f20f8aaede2eaa6441028d1571ecc02fa5e1c2717e8705da34f060de111eb151a5b6ea11fa51ceaed8d7772c97c037","tags":[["imeta","url https://image.nostr.build/ac28180127247424a18f8a27097aa81210e5942f0aa3082efc52c300f79817cd.jpg","blurhash eQLXiLo#aekCt7t:ade-j]ofMaflkDf6bHbxaejYj]j@V?jrfRfPj]","dim 1284x1611"],["t","gm"],["r","https://image.nostr.build/ac28180127247424a18f8a27097aa81210e5942f0aa3082efc52c300f79817cd.jpg"]]}] +[10:55:51.167] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:55:51.319] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#gm,\n\nfor every year you work beyond 55, your average life expectancy drops by two years\n\nmake it your duty to retire - or at least stop working dead-end, high stress jobs - by 55\n\npreferably, 50\n\nhttps://image.nostr.build/ac28180127247424a18f8a27097aa81210e5942f0aa3082efc52c300f79817cd.jpg","created_at":1759416942,"id":"7bd1ec89d232c85015b5d0717878b1f52c31407001f3aaf354fa34401f6b5236","kind":1,"pubkey":"2f02d76f09666ae076e65beb60ff195eb7f44b51c73147a6a37748bfabd60a7c","sig":"69e2331b8466ae128e6daf53b0ce840b69f20f8aaede2eaa6441028d1571ecc02fa5e1c2717e8705da34f060de111eb151a5b6ea11fa51ceaed8d7772c97c037","tags":[["imeta","url https://image.nostr.build/ac28180127247424a18f8a27097aa81210e5942f0aa3082efc52c300f79817cd.jpg","blurhash eQLXiLo#aekCt7t:ade-j]ofMaflkDf6bHbxaejYj]j@V?jrfRfPj]","dim 1284x1611"],["t","gm"],["r","https://image.nostr.build/ac28180127247424a18f8a27097aa81210e5942f0aa3082efc52c300f79817cd.jpg"]]}] +[10:55:51.379] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"室内ãªã®ã«è‹¥å¹²å¯’ã„ã‚“ã§ã™ãŒã€ã“れã¯â€¦ï¼Ÿ","created_at":1759416941,"id":"f1532f255d2251e821e6561d3307bd27390cded349bbf206e3c7d35530511a54","kind":1,"pubkey":"7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f","sig":"e193a98eb70ec6686c8dcc87a4064878d02b11dc9c29687e45b40d7cef80eff45333877c06dc5bc3e5368ae1006b28c2f7c1787486cd6aa9038c25f5fecc5501","tags":[["alt","A short note: 室内ãªã®ã«è‹¥å¹²å¯’ã„ã‚“ã§ã™ãŒã€ã“れã¯â€¦ï¼Ÿ"]]}] +[10:55:51.440] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂","created_at":1759416938,"id":"aa041e6e0c208284a70456793519ac6cbd99f44081b17bfb1cdf36df7a81ef27","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"50bafd26bca5aa997f3dc6713bef3b3aee5ff78cd2d106afb5c5e9b7b6242ff85c260b00705251d5c3337d093e1603a5dd7fec242446696a95bcf909665c7fbe","tags":[["e","5bca9a84e84639baedd7681b54498c06b69d13c1ac1fcdc5161c8e0cfede9ea3","wss://relay.primal.net","root"],["e","0dee4a80ce64cff79eeb891386524be9cd9ca353479d6b11db7e0f192cb88794","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","df478568479de26b4a83c1bdc4dbab61b5cc82e1a312e2b28bc815a12a951e67"]]}] +[10:55:51.500] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \n\n\n\nhttps://blossom.primal.net/7db35fe5c094eb418916b76325690f1f76dffa8b6c9485913570b53ff60d833a.jpg","created_at":1759416935,"id":"cb25ba0a6936496a798b811c10688ace2a0f5774b3dc9cbdbfc1bf2595c95b13","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"f1fe21c63579229cc3a3509778b697fd628a6c4d031b10546f7745bad44765f2449e98ec28330ad59dffff7e59458b88f100cbdc0db3a8706cc7474ea3d4a448","tags":[["imeta","url https://blossom.primal.net/7db35fe5c094eb418916b76325690f1f76dffa8b6c9485913570b53ff60d833a.jpg","m image/jpeg","ox 7db35fe5c094eb418916b76325690f1f76dffa8b6c9485913570b53ff60d833a","dim 853x1280"]]}] +[10:55:51.561] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"It was freaking wild. I never stopped with the low rise, but everything else is done 😂","created_at":1759416934,"id":"91758a630133ae9a8644688f4e2170dc44e4ba0d8c9b3331d3381a451b6a9ebf","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"6da72f5742946ee60f0847b142b7a8ecf60cd3046b7c3f63c9497ccf6eea4ba9ffb357e4d8a49ee0c958b3e0f6651b31a7498470753908aa0a636bab57e995a5","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root"],["e","2c71000041a7f6c41b4981d74c3e0b9093c33d313f0392afc6dcf75af779895e","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[10:55:51.621] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can challenge the local assessment. Go to them and tell them everything wrong about your house and how much it would cost to fix it.","created_at":1759416927,"id":"5754e3326c36245c88ddc3c9dad60bcf56c99d160d2459a158f89b9020a17d60","kind":1,"pubkey":"edb470271297ac5a61f277f3cd14de54c67eb5ccd20ef0d9df29be18685bb004","sig":"efb4e3d3971bfb31f187157a0679acfaceb90edf28cc6eb3a954c6785fa69d94344bb4a134c25ffa662e05de107a0d42e6eedad8753c65650a71d1b393cc82b5","tags":[["alt","A short note: You can challenge the local assessment. Go to them..."],["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://relay.bitcoindistrict.org/","root","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","wss://eden.nostr.land/"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://theforest.nostr1.com/"]]}] +[10:55:51.682] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"We’d love to see Cleveland Bitcoin create a community site with it! Let nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 know if you have questions or need help!","created_at":1759416923,"id":"11785c2975fd15b8a0a13241f661f2caccc18d73da278cb3aef4f81ee13beee9","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"7425fd6fe44bd3cbc2e44d088a629ab1e07ec4c66905e0d8c78c21458401f08531e6300851b74dc817cf73add30fdfba09a574f6a7bd4a433f027c32d28aaf58","tags":[["e","79c0c4293b0a20705a2180b27f809ff5bac834324309c6d312d7d73bcf95d4ec","","root"],["e","1599afc78fa5c343c2f08147f0fe83eeae31d9865d12a9ca7c563bf4a6d0f5b7","","reply"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","86184109eae937d8d6f980b4a0b46da4ef0d983eade403ee1b4c0b6bde238b47"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dcf5c73b834eb851f2"],["p","5d39170696978f274f81b8534ddccf7cdce5a5c0a69ba91fab9f0e5436b4abb1"],["p","0461fcbecc4c3374439932d6b8f11269ccdb7cc973ad7a50ae362db135a474dd"],["p","781a1527055f74c1f70230f10384609b34548f8ab6a0a6caa74025827f9fdae5"],["p","932614571afcbad4d17a191ee281e39eebbb41b93fac8fd87829622aeb112f4d"],["p","be7358c4fe50148cccafc02ea205d80145e253889aa3958daafa8637047c840e"],["p","2093baa8621c5b255e8f4fc2c6fdfc10d8a5598a25517664efaba860735f1030"],["p","47259076c85f9240e852420d7213c95e95102f1de929fb60f33a2c32570c98c4"],["p","0574536d3ef4d65faf95b42393610b8475d22f4c294649d46c50d5d36f75267c"],["p","f1989a96d75aa386b4c871543626cbb362c03248b220dc9ae53d7cefbcaaf2c1"],["p","9ffaa6394e6d31cb59aa3b26cf1c9f2cb0c2ead7f9a01749d1fcc5bf773d4b9c"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:55:51.742] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã®ï¼","created_at":1759416923,"id":"88d55d9156cbf62a1c442f32350e613c0c7632b7819363de3f8a3027d4e434e3","kind":1,"pubkey":"7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f","sig":"a7e04f4f5a97b21dff59a5b46aaadf68f6a5b31b439b7afc13990c1a4a0a3a25b20443ea5bdaf9da741d52f726d7afab377bdd73f9a4bd43bf0496936ab347b2","tags":[["alt","A short note: ã‚ã®ï¼"]]}] +[10:55:51.803] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Let go, be free, do you have fun? And most importantly, spread love.","created_at":1759416922,"id":"5e325d9c28fd60dc88419d09d86552dd41848ca7946ffc9284368959ed881158","kind":1,"pubkey":"db1e72042b0f4fa2d0d2be371aa1e8f3cbc416f17b9e943967e2209043e9d1b7","sig":"a29e71177b87c56e52875f1fd8ef6ae32369652540c36d053e6a0e1a427e753b892d1a3c408eb17d2d37600b375292b3339261b4d76ff08e441a46d89808915c","tags":[]}] +[10:55:51.863] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I think so. I would make two bets about where we’ll be in 10 years and am trying to figure out the implications:\n\n- Block space will be massively more valuable than today, as tools built around digital permanence become more prevalent. Almost all monetary transactions will be fully ‘packed / joined’ with many inputs and outputs, which spam transactions of today don’t need to compete with.\n\n- Mining will be massively more decentralized than today making it harder/more costly to route around nodes. \n\nI dont think the second one matters so much as it relates to spam, as we only need a small minority of nodes to propagate transactions based on likelihood of mining vs a qualitative assessment of what’s inside, in order for it to be mined.","created_at":1759416922,"id":"bb990a6069034c5f13ed74d6a20ae8faadfe69a260818138e85978bf6f7700ee","kind":1,"pubkey":"9a98e65b211f0a455b869ee06eec2a99b24315ce684530dc5e7db9899fb678e3","sig":"6a7f958b0ea83beddce1b612b6a5bfcb371b77d27a756b1c2cf117f3529ca89c156c29e95f843f3f94cc0302e93c791f5036eda39d73e9b1f610b2bbad179264","tags":[["e","7887e6db72e2389f67c06ee2f4f5017eb1ba8b5d0a58707ca638c898945efad1","","root"],["e","184cf41de9a44ab6647af6370156c747a24a32d587a1ffc6d68fef1d322e6558","","reply"],["p","b481d853bdd549c8cad18dcc1fb1fc8dba6e96b60278fcec388bb15967f95a2d"]]}] +[10:55:51.924] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:55:52.333] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😊","created_at":1759416951,"id":"a86f2fd2b4761f88fe1506f2d99e51ffcd4c874673e574a4b4429ef530d8b34c","kind":1,"pubkey":"cc2783215f21a578e492ac0cf31e5038be7a9f7b8b8d696ac753c48bcd6074a5","sig":"1767be40c7c04c7a2d85dffd99ebc627ff6badeeabb2478b3703695f94942ae50057174647a9a015e0d13d1040b5de53479ae6636d02f69f239c3a47b3f21a23","tags":[["e","ca53bb760c669a2e01fb59c35ab757df3ad05b0f2159ea1e424fdc558dd357ea","wss://relay.nostr.band/","root"],["e","1647b5616b9ade0695803c8705268770ee8c0d4921258d50e8896779875429ff","","reply"],["p","674473f682bc0101c94a7b2f463661943948ee1b8d6e266077578d46f859eb3c"]]}] +[10:55:57.927] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"He’s a bad influence on me 😆","created_at":1759416957,"id":"626465259b0a0cf0c66ce7b32b3e153aa501ce02da808906e8c36c22c9a90ddb","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"62ece0387cb0c703849c5dacbf57bbc6d34838842769eae530fcad75eba07770be652b19c2c6764b4ae3d9648cc16ab47124eed2ec1316c80a6f03c6f657b82a","tags":[["e","9f7f29d0f3bd194e75fc6382527cef8da8f058c6bef69432baf2543045cc1d50","wss://relay.nostr.band/","root"],["e","c8179d2f64b5e21fbf0e849f7a12c3907866b5478fba50078b443355da3eeaf9","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[10:56:00.090] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"æ™‚è¨ˆã®æ—¥ä»˜ãŒãšã‚Œã¦ãŸã®ã§ç›´ã—ãŸ","created_at":1759416957,"id":"b8ad2e45161ce672299b7b8ecb8d967f7c117974c713edde28831e75ffe041a6","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"9a48b1cdac0e5f2c0bdd1fbd42627df10925457ed3f5fe3fdd90af928e673a58835df0820f4ecab76e265f9fe6d7ae7f1ade74d4ad49f8f331de6c3ab49eaa84","tags":[["alt","A short note: æ™‚è¨ˆã®æ—¥ä»˜ãŒãšã‚Œã¦ãŸã®ã§ç›´ã—ãŸ"]]}] +[10:56:00.483] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I'm not convinced LaFawnduh was the best choice to be Kip's wife. \n\nI also wouldn't bet that Kip isn't still chatting with babes...all day long. \n\n","created_at":1759416959,"id":"431fc5ad1659845410b37d999c07ed8851d6b322c9302c5dce3178dd4c43ed82","kind":1,"pubkey":"9d607476bce1fa93f437f9c70c40b332d178b03fd43208201e2b59a0ac7a9172","sig":"37fd796a0f1cd4d1b34b0bd9302f06d73bf242f068f908f52cf20274873d9bb5d0751f4091541488d048f6a1593c26b8e41af6b9412fdc090f911f9c6aea9508","tags":[]}] +[10:56:03.703] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I am free... And so are you. ","created_at":1759416962,"id":"7883eff43b63953173fbfb41c664ff947f0eab0638201bfd2fbdde897b0e9aa3","kind":1,"pubkey":"1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642","sig":"fe94989a6d316bc5a480dc6f8564fc0e3523a3f33dd5603390714c8350d20977ac15e971af6d1875b30b95f0e5fbb973e83ce3ef732682bc046114ef401d0287","tags":[["alt","A short note: I am free... And so are you. "]]}] +[10:56:04.317] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"and where is the link to the zap.stream you Marketing Genius","created_at":1759416962,"id":"18f83206a8348ba5dc4fea68418ee7af2772634fcb373df7a703e66abf69462d","kind":1,"pubkey":"25bbf506e81275f96c1fd7cf6bed2fcd93a991f43a8672edef9159259c1915e4","sig":"7964dfbe080468ef457997570930e938901f29a786ab1aee55d9692b064aff43f1457c2ecc99dff79927143aa55ab79d9fa3d3d0bbe6cd17cfc27ef761f68c2f","tags":[["e","cb4d5f0cd5f264cbd9362782e6a2d133a4ef647ce02ba17cec445ab93f251070","","reply"],["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["p","0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8"]]}] +[10:56:05.609] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yay fake followers to boost a number that doesn't matter. The primooool privilege.","created_at":1759416966,"id":"1ed002f0acaa60ca1d2bc3c087f79403682ea3c9f4180fd5e1f0de8b290c0a9c","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"a620228a4fd4b231dd4da4f425397e3fe83537f7151e6d59ddd570cb05880142c9d48ad50242bd0f98665751f9664b8fff4fe1a1fc4531bb836af5b715555eae","tags":[["alt","A short note: Yay fake followers to boost a number that doesn't ..."],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nostr.land/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","48b4e89f39e25344b1bfe97abc23d7e3dc51bb86ad1a8c768dd09abb1eb6ab1e","wss://nostr.land/","","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","33aa2152703e1119e708bb0d4ac620cad626e347b5b026914ac6994d55b397dd","wss://pyramid.fiatjaf.com/","reply","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","wss://theforest.nostr1.com/"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","wss://frens.nostr1.com/"]]}] +[10:56:08.104] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚‚ã†ä¸€å›žã€€æ‹ãƒãƒŠã€‚。。â‰ï¸","created_at":1759416967,"id":"08eb3d7b58f0dff6998123c809c2cfb8faf756238a651aa66ee657dc14427283","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"d95f31a59a1ec7d775914a930e89a393d7c2b9f9da94281147f2b3fa00fbff31a71bb7564b5ec1a341ba9b0fb39fb28be82a12fea551a8fa5662b62773593130","tags":[]}] +[10:56:12.200] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:56:12.311] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:56:13.307] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What tools can I use to customize my NOSTR experience and to improve it in general? ","created_at":1759416972,"id":"d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"ff3e2adc85565c0c7b3442f9f484df55f432949abdd40dcd64dfaf4859104e0c1cc9424b67a9d639f9b7c9a8d291a7b6988cde5e7c842e5dc132f8e937b93656","tags":[]}] +[10:56:13.410] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I saw someone in the emergency department who didn't stop and consider the edibles contained THC. 😂 What a drooling mess. A LOT of THC was consumed that day.","created_at":1759416972,"id":"7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"7931d0a2c57fbaedbd53f42ce6fb78b531f3c24e752665dfcef3e4b7dcaa526b2b17af564549ca0ac56fe6a12351b9c617b02797a2754849308722fe6b00c779","tags":[["alt","A short note: I saw someone in the emergency department who didn..."],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://theforest.nostr1.com/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"]]}] +[10:56:14.688] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã°â€¦â€¦ã‚ã°â€¦â€¦","created_at":1759416972,"id":"e631b3bc2afbfc9f86dc533ba3d0cd95b5a8f00ce3ec5a352341f634c910972b","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"eeda2f15388097c9f6828f346d22636045a26b7f8de22f5cbcf13f3675e52a1210b8c4aac8297e1ab084e6c06e0bfa829b895c63f5cf410bfcaf0dd72980a25a","tags":[["alt","A short note: ã‚ã°â€¦â€¦ã‚ã°â€¦â€¦"]]}] +[10:56:15.413] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Go Catholic Go Based\n\nhttps://video.nostr.build/9989349fff95d1034859f8ad57916cc3422bb2148d50fa2834c2290c9a35a237.mp4","created_at":1759416975,"id":"a18d4ca3fe8b9e678a360ad0c3b3c9f253ea39dba1c3a7eb4f4f224266cffd3c","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"cc8105734ed80245f6ae40b4b7524307e13501e0b2731f4d23c561b079166aedbda6b088616115f5c2cc11a321922cf8f801f01a5d9b8a92d01824b956bbdb1b","tags":[["imeta","url https://video.nostr.build/9989349fff95d1034859f8ad57916cc3422bb2148d50fa2834c2290c9a35a237.mp4","blurhash e00+:,j[4nWB_3ayfQfQfQj[4nay_3of4nayfQj[fQay_3j[4nWB?b","dim 720x960"],["r","https://video.nostr.build/9989349fff95d1034859f8ad57916cc3422bb2148d50fa2834c2290c9a35a237.mp4"]]}] +[10:56:20.232] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ready to be home\nonly i cannot because of a landscaping business","created_at":1759416979,"id":"64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"e245368644faea021ac1df72f3d61b59097994560e832c7478c636c0b5fccd5b795f24d59cb1f8255c96bd0e33b8fd92699907782008905fb81180b8d4428089","tags":[]}] +[10:56:21.177] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:56:21.178] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks a lot. If I understand correctly, xmr's privacy is actually the cause of the lack of \"global roar\".\n\nOne thing that has kept me from Bitcoin is the somewhat unnerving thought that the second you spend any of it for something tangible, your whole financial history is instantly identifiable. Which... I don't really know what I am to think of it. You are fully tied to a \"digital ID\", but you cannot be controlled anyway? Of course you could have hundreds of wallets.\n\nJust pondering, thanks anyway!","created_at":1759416978,"id":"7b9d8f2bb4718e9ae52a17ec85a625b16692723a143f7d082d3788219590461a","kind":1,"pubkey":"3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","sig":"0b969bccbe24d2e927c407605abe420edfdd3216247b346ce90b38161d5c6be92e2c2861c3ede4c8e5f83af3cfe88c2ed8539e50b28b33d066385d2186ef5074","tags":[["alt","A short note: Thanks a lot. If I understand correctly, xmr's pri..."],["e","a6a97cdeb0848bd848dbe8d010b1c78f2ab445a262cad08ae4eac596321fb692","wss://relay.damus.io/","root","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","ws://bostr.bitcointxoko.com/"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.primal.net/"]]}] +[10:56:21.349] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ready to be home\nonly i cannot because of a landscaping business","created_at":1759416979,"id":"64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"e245368644faea021ac1df72f3d61b59097994560e832c7478c636c0b5fccd5b795f24d59cb1f8255c96bd0e33b8fd92699907782008905fb81180b8d4428089","tags":[]}] +[10:56:21.409] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks a lot. If I understand correctly, xmr's privacy is actually the cause of the lack of \"global roar\".\n\nOne thing that has kept me from Bitcoin is the somewhat unnerving thought that the second you spend any of it for something tangible, your whole financial history is instantly identifiable. Which... I don't really know what I am to think of it. You are fully tied to a \"digital ID\", but you cannot be controlled anyway? Of course you could have hundreds of wallets.\n\nJust pondering, thanks anyway!","created_at":1759416978,"id":"7b9d8f2bb4718e9ae52a17ec85a625b16692723a143f7d082d3788219590461a","kind":1,"pubkey":"3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","sig":"0b969bccbe24d2e927c407605abe420edfdd3216247b346ce90b38161d5c6be92e2c2861c3ede4c8e5f83af3cfe88c2ed8539e50b28b33d066385d2186ef5074","tags":[["alt","A short note: Thanks a lot. If I understand correctly, xmr's pri..."],["e","a6a97cdeb0848bd848dbe8d010b1c78f2ab445a262cad08ae4eac596321fb692","wss://relay.damus.io/","root","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","ws://bostr.bitcointxoko.com/"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.primal.net/"]]}] +[10:56:21.470] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Go Catholic Go Based\n\nhttps://video.nostr.build/9989349fff95d1034859f8ad57916cc3422bb2148d50fa2834c2290c9a35a237.mp4","created_at":1759416975,"id":"a18d4ca3fe8b9e678a360ad0c3b3c9f253ea39dba1c3a7eb4f4f224266cffd3c","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"cc8105734ed80245f6ae40b4b7524307e13501e0b2731f4d23c561b079166aedbda6b088616115f5c2cc11a321922cf8f801f01a5d9b8a92d01824b956bbdb1b","tags":[["imeta","url https://video.nostr.build/9989349fff95d1034859f8ad57916cc3422bb2148d50fa2834c2290c9a35a237.mp4","blurhash e00+:,j[4nWB_3ayfQfQfQj[4nay_3of4nayfQj[fQay_3j[4nWB?b","dim 720x960"],["r","https://video.nostr.build/9989349fff95d1034859f8ad57916cc3422bb2148d50fa2834c2290c9a35a237.mp4"]]}] +[10:56:21.531] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã°â€¦â€¦ã‚ã°â€¦â€¦","created_at":1759416972,"id":"e631b3bc2afbfc9f86dc533ba3d0cd95b5a8f00ce3ec5a352341f634c910972b","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"eeda2f15388097c9f6828f346d22636045a26b7f8de22f5cbcf13f3675e52a1210b8c4aac8297e1ab084e6c06e0bfa829b895c63f5cf410bfcaf0dd72980a25a","tags":[["alt","A short note: ã‚ã°â€¦â€¦ã‚ã°â€¦â€¦"]]}] +[10:56:21.591] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I saw someone in the emergency department who didn't stop and consider the edibles contained THC. 😂 What a drooling mess. A LOT of THC was consumed that day.","created_at":1759416972,"id":"7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"7931d0a2c57fbaedbd53f42ce6fb78b531f3c24e752665dfcef3e4b7dcaa526b2b17af564549ca0ac56fe6a12351b9c617b02797a2754849308722fe6b00c779","tags":[["alt","A short note: I saw someone in the emergency department who didn..."],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://theforest.nostr1.com/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"]]}] +[10:56:21.652] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What tools can I use to customize my NOSTR experience and to improve it in general? ","created_at":1759416972,"id":"d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"ff3e2adc85565c0c7b3442f9f484df55f432949abdd40dcd64dfaf4859104e0c1cc9424b67a9d639f9b7c9a8d291a7b6988cde5e7c842e5dc132f8e937b93656","tags":[]}] +[10:56:21.712] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚‚ã†ä¸€å›žã€€æ‹ãƒãƒŠã€‚。。â‰ï¸","created_at":1759416967,"id":"08eb3d7b58f0dff6998123c809c2cfb8faf756238a651aa66ee657dc14427283","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"d95f31a59a1ec7d775914a930e89a393d7c2b9f9da94281147f2b3fa00fbff31a71bb7564b5ec1a341ba9b0fb39fb28be82a12fea551a8fa5662b62773593130","tags":[]}] +[10:56:21.773] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yay fake followers to boost a number that doesn't matter. The primooool privilege.","created_at":1759416966,"id":"1ed002f0acaa60ca1d2bc3c087f79403682ea3c9f4180fd5e1f0de8b290c0a9c","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"a620228a4fd4b231dd4da4f425397e3fe83537f7151e6d59ddd570cb05880142c9d48ad50242bd0f98665751f9664b8fff4fe1a1fc4531bb836af5b715555eae","tags":[["alt","A short note: Yay fake followers to boost a number that doesn't ..."],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nostr.land/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","48b4e89f39e25344b1bfe97abc23d7e3dc51bb86ad1a8c768dd09abb1eb6ab1e","wss://nostr.land/","","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","33aa2152703e1119e708bb0d4ac620cad626e347b5b026914ac6994d55b397dd","wss://pyramid.fiatjaf.com/","reply","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","wss://theforest.nostr1.com/"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","wss://frens.nostr1.com/"]]}] +[10:56:21.833] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"and where is the link to the zap.stream you Marketing Genius","created_at":1759416962,"id":"18f83206a8348ba5dc4fea68418ee7af2772634fcb373df7a703e66abf69462d","kind":1,"pubkey":"25bbf506e81275f96c1fd7cf6bed2fcd93a991f43a8672edef9159259c1915e4","sig":"7964dfbe080468ef457997570930e938901f29a786ab1aee55d9692b064aff43f1457c2ecc99dff79927143aa55ab79d9fa3d3d0bbe6cd17cfc27ef761f68c2f","tags":[["e","cb4d5f0cd5f264cbd9362782e6a2d133a4ef647ce02ba17cec445ab93f251070","","reply"],["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["p","0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8"]]}] +[10:56:21.894] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I am free... And so are you. ","created_at":1759416962,"id":"7883eff43b63953173fbfb41c664ff947f0eab0638201bfd2fbdde897b0e9aa3","kind":1,"pubkey":"1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642","sig":"fe94989a6d316bc5a480dc6f8564fc0e3523a3f33dd5603390714c8350d20977ac15e971af6d1875b30b95f0e5fbb973e83ce3ef732682bc046114ef401d0287","tags":[["alt","A short note: I am free... And so are you. "]]}] +[10:56:21.954] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:56:22.015] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You should have been on the marketing team 😂 I’m in","created_at":1759416981,"id":"19498b412541acedbf34282471f1b2a213e6f2700451b78cd491335856cc2f19","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"8ce04641d88ea2d1c56f756a1c62aab71ce0ac189273645739aeb04de88e792b1cc4c0350d6cb22cab601c11b3450b387d9abc9e41ad4e928afdbc29ed34f494","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","7b1b1c14f7cac03d1f2d9a0bcbbf1edde02cb9cf1670199bc14b2464f59df725","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:56:25.839] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The crazy thing about fucking with anons online is you really don’t know who is on the other end of that pfp\n\n“Are they a 12 yr old child?†Or “did they possibly subcontract under NSA engineers for 10 years?â€\n\nYou never really know 🤷ðŸ¼â€â™€ï¸ ","created_at":1759416985,"id":"715048dcd29ad51c29f0901eca93d4ce8c16a0cb1700913c1909eb900579aeb7","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"68239cf4db27028c1ebbb35af59afb7abcd27feb076d832f8ea2413247e4400a13da5f200b962364e038aca807da20fd27956ff4db54ce7e05f59fe08378426a","tags":[]}] +[10:56:35.485] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Streaming: Capsule - 031\n1. Ill Logic - Art and Illusion\n2. Calibre - Start Again (feat. Chimpo)\n3. Dat Oven - Icy Lake (Original Arena Mix)\n4. Jeff Mills - The Other Maria\n5. Maggie Nicols - Donnie and Zouina\n6. Kikagaku Moyo - Melted Crystal\n7. Noco Music - Gaal\n8. Kiefer - My Disorder\n9. FROID DUB - Iguana Style\n\nhttps://harmonique.one/shows/capsule/episodes/031 #music #tunestr","created_at":1759416993,"id":"63a2e7b49e8ad0b241551f94489ade59da6700c9f51bffcd94be6b3826088cda","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"5646767460fa258592845e8e0422321ae60a1c120d117a9318198bb5056cf5f699cb0eb57532f7e1096ec17e4756d5093330b4c90b449d98d3b97fcb14fbbcb4","tags":[]}] +[10:56:37.538] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"my arch nemesis landscaping business","created_at":1759416997,"id":"6042bd2ef6d37c39692f773f3068af1a6d2315319a2ca2f0505a41e0f4a58dc6","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"90bda0c513d0f9bd5999e9a826c8280d08048a31f06cdc26d9d764c2feca8457758d08fa2191341d12a7a1e2d3753c347f8a062e74888de26927a5d906929e4c","tags":[["e","64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","","root"]]}] +[10:56:37.599] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã‚ãã‚ã‚ã‚“ã ãƒ¼ã™ãŸã‚“ã©ã®ç¶šãをやりãŸã„æ°—æŒã¡ã¯ã‚ã‚‹ã‚“ã§ã™ã‘ã©ã‚‚ã­","created_at":1759416995,"id":"c3d06e5aa3afbc87891e3772d3be1797234e5ef4c9ac3ea7be7839c4fe857d6c","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"fc7c87c030c11968257fe0919b62f0690c0e0d1df118819e1c30e6ba7248e61b5ebe815fe281c7dfe0cb7368d09fd6317a3641ebc5c7f9de59931a68509b6db1","tags":[["alt","A short note: ãã‚ãã‚ã‚ã‚“ã ãƒ¼ã™ãŸã‚“ã©ã®ç¶šãをやりãŸã„æ°—æŒã¡ã¯ã‚ã‚‹ã‚“ã§ã™ã‘ã©ã‚‚ã­"]]}] +[10:56:41.203] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Let’s climb those mountains! \nhttps://media.tenor.com/mz5Aq5KpywcAAAAC/wheee-rally-car.gif","created_at":1759417000,"id":"808f1cea3833b7d70994814bd397b2fdeb5af9799559c01820cd1f0a019511cd","kind":1,"pubkey":"e402cd18ea7111d56f4eaae661972a53e6b43ded5ad38bc267c9e61750eccde9","sig":"df167f57b4e8a44855862f95753672f53797b734cbcb418261e77e761a8d123f42fec378b6d6c486a303ac3c9abfab0ba58b81818c4d1a26b76a7fa173101a9b","tags":[["e","2e0a3869c2c526f7bd14adbad7db9a5f3e0166f1272c85bcc53cb7f9a15c7cf7","","root"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","","mention"]]}] +[10:56:42.210] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:56:42.321] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:56:45.532] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Actually sounds delicious ","created_at":1759417005,"id":"b286add52280dec4ab41eb949f3a03c185ff3dc6e9199d1f1c8b98177fe0c867","kind":1,"pubkey":"0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","sig":"fcc566668625ffc816f00f841f5d971a41e979bbff5217b2d3c73611f3e20d4c3f27536a3b8196c5cc67e7caad06df9084fcda1a732112cc60c1d1ace4f2c256","tags":[["e","0aac24945171703088a31d31bc0723e4a738e89fc939e16921adb0dbf9e0c52f","","root"],["e","815da6e0301c1f2e0488d8fededd4aec1cc87878ffc1490bda7ba8f194367d01","","reply"],["p","9a21569255d0a3a9e75f1de2e4c883c9be2e5615887f22b2ecf6b1813bcd587d","","mention"]]}] +[10:56:48.850] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Maybe developers' recommendations should have been about DEVELOPING a robust system","created_at":1759417011,"id":"827df0c33f1093650566152a1e00bab53e2647cd5d7e3858b93a19f3be0ef8c1","kind":1,"pubkey":"85dff47ef82fe646ed848d828754bb4bfaae759e3462aefec3ace417656b8eed","sig":"338b550e0ac7fb6cd169e70be4fa98de0676802f7b6ae4517ae172abcdfcd9a4bfee14707a7ee63c1807b2e1f18354613ec3159e04e7e945512f2530d473335b","tags":[["alt","A short note: Maybe developers' recommendations should have been..."],["e","ad5ac9d23b628c24b4e1a1e897b64f45464f3996357437448aa795c65c068cc0","wss://nostr.lopp.social/","root","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106","wss://nostr.lopp.social/"]]}] +[10:56:51.124] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:56:51.285] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Maybe developers' recommendations should have been about DEVELOPING a robust system","created_at":1759417011,"id":"827df0c33f1093650566152a1e00bab53e2647cd5d7e3858b93a19f3be0ef8c1","kind":1,"pubkey":"85dff47ef82fe646ed848d828754bb4bfaae759e3462aefec3ace417656b8eed","sig":"338b550e0ac7fb6cd169e70be4fa98de0676802f7b6ae4517ae172abcdfcd9a4bfee14707a7ee63c1807b2e1f18354613ec3159e04e7e945512f2530d473335b","tags":[["alt","A short note: Maybe developers' recommendations should have been..."],["e","ad5ac9d23b628c24b4e1a1e897b64f45464f3996357437448aa795c65c068cc0","wss://nostr.lopp.social/","root","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106","wss://nostr.lopp.social/"]]}] +[10:56:51.346] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Actually sounds delicious ","created_at":1759417005,"id":"b286add52280dec4ab41eb949f3a03c185ff3dc6e9199d1f1c8b98177fe0c867","kind":1,"pubkey":"0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","sig":"fcc566668625ffc816f00f841f5d971a41e979bbff5217b2d3c73611f3e20d4c3f27536a3b8196c5cc67e7caad06df9084fcda1a732112cc60c1d1ace4f2c256","tags":[["e","0aac24945171703088a31d31bc0723e4a738e89fc939e16921adb0dbf9e0c52f","","root"],["e","815da6e0301c1f2e0488d8fededd4aec1cc87878ffc1490bda7ba8f194367d01","","reply"],["p","9a21569255d0a3a9e75f1de2e4c883c9be2e5615887f22b2ecf6b1813bcd587d","","mention"]]}] +[10:56:51.477] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Let’s climb those mountains! \nhttps://media.tenor.com/mz5Aq5KpywcAAAAC/wheee-rally-car.gif","created_at":1759417000,"id":"808f1cea3833b7d70994814bd397b2fdeb5af9799559c01820cd1f0a019511cd","kind":1,"pubkey":"e402cd18ea7111d56f4eaae661972a53e6b43ded5ad38bc267c9e61750eccde9","sig":"df167f57b4e8a44855862f95753672f53797b734cbcb418261e77e761a8d123f42fec378b6d6c486a303ac3c9abfab0ba58b81818c4d1a26b76a7fa173101a9b","tags":[["e","2e0a3869c2c526f7bd14adbad7db9a5f3e0166f1272c85bcc53cb7f9a15c7cf7","","root"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","","mention"]]}] +[10:56:51.538] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"my arch nemesis landscaping business","created_at":1759416997,"id":"6042bd2ef6d37c39692f773f3068af1a6d2315319a2ca2f0505a41e0f4a58dc6","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"90bda0c513d0f9bd5999e9a826c8280d08048a31f06cdc26d9d764c2feca8457758d08fa2191341d12a7a1e2d3753c347f8a062e74888de26927a5d906929e4c","tags":[["e","64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","","root"]]}] +[10:56:51.598] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã‚ãã‚ã‚ã‚“ã ãƒ¼ã™ãŸã‚“ã©ã®ç¶šãをやりãŸã„æ°—æŒã¡ã¯ã‚ã‚‹ã‚“ã§ã™ã‘ã©ã‚‚ã­","created_at":1759416995,"id":"c3d06e5aa3afbc87891e3772d3be1797234e5ef4c9ac3ea7be7839c4fe857d6c","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"fc7c87c030c11968257fe0919b62f0690c0e0d1df118819e1c30e6ba7248e61b5ebe815fe281c7dfe0cb7368d09fd6317a3641ebc5c7f9de59931a68509b6db1","tags":[["alt","A short note: ãã‚ãã‚ã‚ã‚“ã ãƒ¼ã™ãŸã‚“ã©ã®ç¶šãをやりãŸã„æ°—æŒã¡ã¯ã‚ã‚‹ã‚“ã§ã™ã‘ã©ã‚‚ã­"]]}] +[10:56:51.659] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Streaming: Capsule - 031\n1. Ill Logic - Art and Illusion\n2. Calibre - Start Again (feat. Chimpo)\n3. Dat Oven - Icy Lake (Original Arena Mix)\n4. Jeff Mills - The Other Maria\n5. Maggie Nicols - Donnie and Zouina\n6. Kikagaku Moyo - Melted Crystal\n7. Noco Music - Gaal\n8. Kiefer - My Disorder\n9. FROID DUB - Iguana Style\n\nhttps://harmonique.one/shows/capsule/episodes/031 #music #tunestr","created_at":1759416993,"id":"63a2e7b49e8ad0b241551f94489ade59da6700c9f51bffcd94be6b3826088cda","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"5646767460fa258592845e8e0422321ae60a1c120d117a9318198bb5056cf5f699cb0eb57532f7e1096ec17e4756d5093330b4c90b449d98d3b97fcb14fbbcb4","tags":[]}] +[10:56:51.720] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The crazy thing about fucking with anons online is you really don’t know who is on the other end of that pfp\n\n“Are they a 12 yr old child?†Or “did they possibly subcontract under NSA engineers for 10 years?â€\n\nYou never really know 🤷ðŸ¼â€â™€ï¸ ","created_at":1759416985,"id":"715048dcd29ad51c29f0901eca93d4ce8c16a0cb1700913c1909eb900579aeb7","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"68239cf4db27028c1ebbb35af59afb7abcd27feb076d832f8ea2413247e4400a13da5f200b962364e038aca807da20fd27956ff4db54ce7e05f59fe08378426a","tags":[]}] +[10:56:51.780] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You should have been on the marketing team 😂 I’m in","created_at":1759416981,"id":"19498b412541acedbf34282471f1b2a213e6f2700451b78cd491335856cc2f19","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"8ce04641d88ea2d1c56f756a1c62aab71ce0ac189273645739aeb04de88e792b1cc4c0350d6cb22cab601c11b3450b387d9abc9e41ad4e928afdbc29ed34f494","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","7b1b1c14f7cac03d1f2d9a0bcbbf1edde02cb9cf1670199bc14b2464f59df725","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:56:51.840] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ready to be home\nonly i cannot because of a landscaping business","created_at":1759416979,"id":"64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"e245368644faea021ac1df72f3d61b59097994560e832c7478c636c0b5fccd5b795f24d59cb1f8255c96bd0e33b8fd92699907782008905fb81180b8d4428089","tags":[]}] +[10:56:51.901] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks a lot. If I understand correctly, xmr's privacy is actually the cause of the lack of \"global roar\".\n\nOne thing that has kept me from Bitcoin is the somewhat unnerving thought that the second you spend any of it for something tangible, your whole financial history is instantly identifiable. Which... I don't really know what I am to think of it. You are fully tied to a \"digital ID\", but you cannot be controlled anyway? Of course you could have hundreds of wallets.\n\nJust pondering, thanks anyway!","created_at":1759416978,"id":"7b9d8f2bb4718e9ae52a17ec85a625b16692723a143f7d082d3788219590461a","kind":1,"pubkey":"3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","sig":"0b969bccbe24d2e927c407605abe420edfdd3216247b346ce90b38161d5c6be92e2c2861c3ede4c8e5f83af3cfe88c2ed8539e50b28b33d066385d2186ef5074","tags":[["alt","A short note: Thanks a lot. If I understand correctly, xmr's pri..."],["e","a6a97cdeb0848bd848dbe8d010b1c78f2ab445a262cad08ae4eac596321fb692","wss://relay.damus.io/","root","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","ws://bostr.bitcointxoko.com/"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.primal.net/"]]}] +[10:56:51.962] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:56:52.576] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"No you’re fine. It’s a calculated choice.","created_at":1759417012,"id":"9356691475a06cfa0b1c377b72e2c568d330510abb7d3546541718d2c4c746fd","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"c2238b8e53e19bc85c450a7547e6c8cbed4b8eeeb24c5097c889876980ad25b448e58ab79e592a7765aab8c76dbab667af07f9882844c13ae45573c8b67485fd","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[10:56:56.103] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"マリオギャラクシーやりãŸã„","created_at":1759417015,"id":"03cf8ed9dcd619896300136234ec05642eaf38c43a07ed754ebcf129e61e1da7","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ade0c9bf15dd29e59ebec92858d8fd9964eb1064cdc4ae5d0c8bdb0637e19fd3c759cc148bcec11db036d9df5e5a1064dad657d24629fc2d865f4e733fc27470","tags":[]}] +[10:56:56.428] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã°ã°ï¼ãã°ï¼ã‚ã°ã‚ã°ï¼ï¼","created_at":1759417014,"id":"1a15143edd5b78b35899df677b24f4005942165d72e1af615e0aac0424aadbf3","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"33d393b9a6c960624414f83d66fd2406c1529a7fcb7cb753426180df9093990f350acd9de7e9b13b8b675f66d1cc4258c9f82f37462fc117be4407c3296b06fb","tags":[["alt","A short note: ã‚ã°ã°ï¼ãã°ï¼ã‚ã°ã‚ã°ï¼ï¼"]]}] +[10:56:57.016] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What's up, pervs? \nI see that 2 of you actually missed me. 🫂 \nI decided to accept, all of a sudden, an invitation to the Wiesn, or Oktoberfest, so I had a surprisingly nice time. Drinking, singing, food for a small city, and I even got some dick from the guy who invited me. It was a good time but crazy expensive. This might be the month when I start sucking dick for money.\nOn a side note, I'll be posting only once or twice a day for the foreseeable future because my porn phone is in a coma and it needs to stay plugged to work for more than 20 minutes.\nI'll try to post something more whore-ish tomorrow. Till then, here's some muscle.\nhttps://cdn.azzamo.net/446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0.jpeg https://cdn.azzamo.net/36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390.jpeg https://cdn.azzamo.net/10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b.jpeg https://cdn.azzamo.net/8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc.jpeg https://cdn.azzamo.net/65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08.jpeg https://cdn.azzamo.net/030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666.jpeg https://cdn.azzamo.net/8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7.jpeg https://cdn.azzamo.net/f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235.jpeg","created_at":1759417016,"id":"55b8b0008558936092dd6576c99b45b42f4e47498e51e652ca71f6679aeffede","kind":1,"pubkey":"03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","sig":"35a0e4fbafde3b9de1ca9feae748ee023e03f928945aed10776e39848653692a4d4480fa9ffb4588ff76da2e2cbddfb4c520535b3d968c99994baa20eb8e0496","tags":[["alt","A short note: What's up, pervs? \nI see that 2 of you actually mi..."],["r","https://cdn.azzamo.net/65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08.jpeg"],["r","https://cdn.azzamo.net/8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc.jpeg"],["r","https://cdn.azzamo.net/446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0.jpeg"],["r","https://cdn.azzamo.net/8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7.jpeg"],["r","https://cdn.azzamo.net/10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b.jpeg"],["r","https://cdn.azzamo.net/36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390.jpeg"],["r","https://cdn.azzamo.net/030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666.jpeg"],["r","https://cdn.azzamo.net/f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235.jpeg"],["imeta","url https://cdn.azzamo.net/446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0.jpeg","x 446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0","size 192328","m image/jpeg","dim 928x1228","blurhash _PKS@Fv#.Q%f%Kt7%L9a-.Myw^s:RkV[?[EM$%={jFWCsoEgbIbFODX8nOr??Zt6NbS#RkkCJT.6W;xZt7t7R+Nbxtt7Rkj[WVV[V[?GjFW;x[azoeWV-oxZR+NHWWWBo0","ox 446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390.jpeg","x 36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390","size 145363","m image/jpeg","dim 928x1228","blurhash _AE2ICN^.R}r5RI;Vt5-njIpJ8-AjZJT0}soa0NbNus.-U%1$%r?EgNaxZR+=xJ8JT=d={SgRkR,oLR*R*NHNaxGEMso$iNbI;xGWoS2WBofba-AoLR*$jWWI;snfkWVoL","ox 36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b.jpeg","x 10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b","size 256993","m image/jpeg","dim 928x1228","blurhash _BFOP#~A_2gM^%?Ft7o|kC?Ga|xFxZIpyC58-onjV[j@WV}?$%E3WXI;NaWCkDn%^%t6E2WDM|NbW;jusooLNHt6?GR*NHazoJt6f6afoK%1bHR+oLM|?GoexZfkIpj[WV","ox 10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc.jpeg","x 8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc","size 178914","m image/jpeg","dim 928x1228","blurhash _BI464?GC54;00=xS4~oofIBM|9a%1%L0MIp#9-U.7S#={4oIobb%L_2IpRQ,:snOro|%1RP9G?Goet6oLD*s.RjTds:rrRjM|kVb]%1t6E2M|s9bHxtn5oLODbHxZayWV","ox 8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08.jpeg","x 65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08","size 194392","m image/jpeg","dim 928x1228","blurhash _bKTC?Ip~U%1xat6fk-oayRkoeNGWCWVt6oeRkR+Rkayt6t6oeRkR*xZoLR*xZWVNGf7oeoLs.WVj[s:j[WCfkayoej[aya|fkj@WVs:a|R*ayt6jtjZWVayj[j[j[a|ay","ox 65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666.jpeg","x 030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666","size 153130","m image/jpeg","dim 928x1227","blurhash _EE28?NK~U57=xRkbv9u%19aR%E1t7IpR+n~JBjZNbso$*NFNH={a~kCj[xZ9uoJIoxas:W;Rj^jR+WUWBt7xat7R-kDM|axn%xtbbt6oLt7RkoJWCs:I:oLs.WBIpRkWB","ox 030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7.jpeg","x 8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7","size 224112","m image/jpeg","dim 928x1228","blurhash _7Fgm_%e~TD+^4F0%1?G=_EgEMIqWXWW0$ENe:%0xZ-TayS4sA-TkVxZWVI;buWB-9J8EM-9Nb^PSh9^niR*R+xF^Os.RksnNwSN$i5lNH$ioykVxYnjEhaf$%s:s:soNa","ox 8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235.jpeg","x f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235","size 211511","m image/jpeg","dim 928x1228","blurhash _VHUalxt~UNHocayM|-.R*%1WCIWWCM|R*M|RkxaR+oeoeM|RkNGt6ofoexZWCoeoKWVNHWCj[xtt6azWBWCWCxZM|azNHayoeWVj[Rkj[ayoeofj[j[oeWVj[ayWVoej@","ox f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235","alt ","content-warning "]]}] +[10:57:00.952] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the man who does not get to speak to me ever again.","created_at":1759417020,"id":"0003f6f22f077426f4767401b3c715c155695bc599a17f2e410b86b352326b02","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"77312434c8ffef801f94d196be8499d12d754700b7b45ac55be8b1e6de7a7955bdb511710fb0b1aeb6f562cd4c3bae64b7873420013e7a8b63b068d58921c528","tags":[["e","64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","","root"],["e","6042bd2ef6d37c39692f773f3068af1a6d2315319a2ca2f0505a41e0f4a58dc6","","reply"]]}] +[10:57:02.070] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"exactly 😂","created_at":1759417021,"id":"e88a2769f13ef8afb76d86674599f278050123eb2f3527b8a2c7d7670e85bbc9","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"eccf63ab98fc85f67e5ec79e0a8ba64ca33d2554f18652e74511c262aa83b2e5b2f84c6ffb8442526438443476ca4268f7a6082588500c6f2e79ea9e98ddeed6","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root"],["e","1780a9c6a82b2e9430b1e25718d95d47740fdf98f9c32754929cc213442f369a","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","19e3eb646d228812b1cff08c505ea2ee5a85d34c567e42f47b3b32658e377fe1"]]}] +[10:57:05.262] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://primal.net/e/nevent1qqsw0esa0qdewumpth5mmd2us5xkcn9q7zthdxrce9rucarzhc6fakqv6zhzs","created_at":1759417024,"id":"9cca55cffed8131765ef8213f29fd67be43e47b7ad43d1b461fe8e15ee796fb6","kind":1,"pubkey":"d74cc6bdd972923370a23e2b8f09eef86ed05cf075d45033a973de569adbb6b8","sig":"f270bb316924ee3356733be44c6f157cd67f74e8843c5a68d33a9b5e3c9943bce8db6a9287c4f968929a60867a682f54103ba95d6310f9b4062a285557ee745f","tags":[["e","d3e8e7b421814889ff26e69c078b5267ef39697b070a518ae10724e9ec5604af","","root"],["p","2f5de0003db84ecd5449128350c66c7fb63e9d02b250d84af84f463e2f9bcef1","","mention"]]}] +[10:57:05.434] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"306ã½ã‚ã§ã™","created_at":1759417025,"id":"9338e05962052fae3fb75f6ba3f581247bc22a3278c01ae282a01a748661b277","kind":1,"pubkey":"4e86cdbb1ed747ff40c65303d1fc463e10aecb113049b05fc4317c29e31ccaaf","sig":"62cda2b77d1a2dbf602bc34185b3d20e0759fa057cba1f422e96993339a0c01feee338f0d951c62442cc2714c2ebb13e6ba778b6a7ee4d187f6ab5c06015f623","tags":[["e","f1e7639ab3e71869c964239e2aedeb42fcd1ec471ddbcecbdedbc4a0877c8640"],["p","8c59239319637f97e007dad0d681e65ce35b1ace333b629e2d33f9465c132608"]]}] +[10:57:11.240] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã“ã‚","created_at":1759417029,"id":"4936cebd30e7ca9bf0ab2708577ce7b5a327c22dbb929cf7736d0022df08d0a8","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"e1a26743d926b46253f98d89899051561863f0f7845482d279ef3880f8c83a71d47dc3012c717b761f1d770647f7f969b5584a56d716cfd7744b65022188bc68","tags":[["alt","A short note: ã“ã‚"]]}] +[10:57:12.136] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:57:12.247] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:57:12.388] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://i.nostr.build/Z5wDBFSvHjMyxqNw.png","created_at":1759417032,"id":"2f89652fcf5a3a90d3f6223c0b3c4ddcc59681621d0086fdb45e07fcd0141038","kind":1,"pubkey":"6da819f91d69cbe591c08b31f555c6d0ab9905197eb515856e339049c018c1af","sig":"9e0a355dd8e6ab4a628290163450ef9add5fdcdd7dbc561b9c7d97fb8144378d257650fb227fec0d1e1b5a8b6832adc9562a1a19e7d2c4ec3e8f4eb994223e9b","tags":[["imeta","url https://i.nostr.build/Z5wDBFSvHjMyxqNw.png","ox 0d439a749e66f7f9eb4a6d454f359226c855c68fc207852482f2c5de97665a3b","x 0d54478c6e2c44be9e58c09749285df0d122f40e1fede09e74fe4fc9eb074b03","m image/png","dim 928x1232","bh LIB3{4ofDixt_MRkIAt7tloMV[bF","blurhash LIB3{4ofDixt_MRkIAt7tloMV[bF","thumb https://i.nostr.build/thumb/Z5wDBFSvHjMyxqNw.png"]]}] +[10:57:13.887] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"è²·ã†ã ã‘è²·ã†ã‹ã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œ","created_at":1759417033,"id":"281755d782a6464f8a87d8379f65005478e0a205d7b1615b2abc0223f04670cd","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"372e1407bf698ee5b7e958e35fb86e3f74fdc740a6bb91c92c53a82a4bee3a1354918f52e9a019f7d44025e276d91f18e49e035d94bc9fdf2911812c27b1dc18","tags":[]}] +[10:57:19.927] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hello, is there anyone here who is familiar with or knows Aachen and its surroundings? #asknostr","created_at":1759417039,"id":"2a0474e6d1d101a4f286d702ecc49553325d3e00ffd61493d13f730bf5da1106","kind":1,"pubkey":"ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453","sig":"d64c303df5534200484d3bb37bffa5319e973f498e1df842c0ddf35cf6f3624e0a358fe9dc472fa1eb601fc0b8376d194c15aa9a1c8c30fbf655a9c6206c3853","tags":[["t","asknostr"]]}] +[10:57:21.216] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:57:21.368] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hello, is there anyone here who is familiar with or knows Aachen and its surroundings? #asknostr","created_at":1759417039,"id":"2a0474e6d1d101a4f286d702ecc49553325d3e00ffd61493d13f730bf5da1106","kind":1,"pubkey":"ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453","sig":"d64c303df5534200484d3bb37bffa5319e973f498e1df842c0ddf35cf6f3624e0a358fe9dc472fa1eb601fc0b8376d194c15aa9a1c8c30fbf655a9c6206c3853","tags":[["t","asknostr"]]}] +[10:57:21.428] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"è²·ã†ã ã‘è²·ã†ã‹ã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œã€œ","created_at":1759417033,"id":"281755d782a6464f8a87d8379f65005478e0a205d7b1615b2abc0223f04670cd","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"372e1407bf698ee5b7e958e35fb86e3f74fdc740a6bb91c92c53a82a4bee3a1354918f52e9a019f7d44025e276d91f18e49e035d94bc9fdf2911812c27b1dc18","tags":[]}] +[10:57:21.861] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://i.nostr.build/Z5wDBFSvHjMyxqNw.png","created_at":1759417032,"id":"2f89652fcf5a3a90d3f6223c0b3c4ddcc59681621d0086fdb45e07fcd0141038","kind":1,"pubkey":"6da819f91d69cbe591c08b31f555c6d0ab9905197eb515856e339049c018c1af","sig":"9e0a355dd8e6ab4a628290163450ef9add5fdcdd7dbc561b9c7d97fb8144378d257650fb227fec0d1e1b5a8b6832adc9562a1a19e7d2c4ec3e8f4eb994223e9b","tags":[["imeta","url https://i.nostr.build/Z5wDBFSvHjMyxqNw.png","ox 0d439a749e66f7f9eb4a6d454f359226c855c68fc207852482f2c5de97665a3b","x 0d54478c6e2c44be9e58c09749285df0d122f40e1fede09e74fe4fc9eb074b03","m image/png","dim 928x1232","bh LIB3{4ofDixt_MRkIAt7tloMV[bF","blurhash LIB3{4ofDixt_MRkIAt7tloMV[bF","thumb https://i.nostr.build/thumb/Z5wDBFSvHjMyxqNw.png"]]}] +[10:57:21.922] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã“ã‚","created_at":1759417029,"id":"4936cebd30e7ca9bf0ab2708577ce7b5a327c22dbb929cf7736d0022df08d0a8","kind":1,"pubkey":"6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b","sig":"e1a26743d926b46253f98d89899051561863f0f7845482d279ef3880f8c83a71d47dc3012c717b761f1d770647f7f969b5584a56d716cfd7744b65022188bc68","tags":[["alt","A short note: ã“ã‚"]]}] +[10:57:21.982] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"306ã½ã‚ã§ã™","created_at":1759417025,"id":"9338e05962052fae3fb75f6ba3f581247bc22a3278c01ae282a01a748661b277","kind":1,"pubkey":"4e86cdbb1ed747ff40c65303d1fc463e10aecb113049b05fc4317c29e31ccaaf","sig":"62cda2b77d1a2dbf602bc34185b3d20e0759fa057cba1f422e96993339a0c01feee338f0d951c62442cc2714c2ebb13e6ba778b6a7ee4d187f6ab5c06015f623","tags":[["e","f1e7639ab3e71869c964239e2aedeb42fcd1ec471ddbcecbdedbc4a0877c8640"],["p","8c59239319637f97e007dad0d681e65ce35b1ace333b629e2d33f9465c132608"]]}] +[10:57:22.043] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://primal.net/e/nevent1qqsw0esa0qdewumpth5mmd2us5xkcn9q7zthdxrce9rucarzhc6fakqv6zhzs","created_at":1759417024,"id":"9cca55cffed8131765ef8213f29fd67be43e47b7ad43d1b461fe8e15ee796fb6","kind":1,"pubkey":"d74cc6bdd972923370a23e2b8f09eef86ed05cf075d45033a973de569adbb6b8","sig":"f270bb316924ee3356733be44c6f157cd67f74e8843c5a68d33a9b5e3c9943bce8db6a9287c4f968929a60867a682f54103ba95d6310f9b4062a285557ee745f","tags":[["e","d3e8e7b421814889ff26e69c078b5267ef39697b070a518ae10724e9ec5604af","","root"],["p","2f5de0003db84ecd5449128350c66c7fb63e9d02b250d84af84f463e2f9bcef1","","mention"]]}] +[10:57:22.103] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"exactly 😂","created_at":1759417021,"id":"e88a2769f13ef8afb76d86674599f278050123eb2f3527b8a2c7d7670e85bbc9","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"eccf63ab98fc85f67e5ec79e0a8ba64ca33d2554f18652e74511c262aa83b2e5b2f84c6ffb8442526438443476ca4268f7a6082588500c6f2e79ea9e98ddeed6","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root"],["e","1780a9c6a82b2e9430b1e25718d95d47740fdf98f9c32754929cc213442f369a","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","19e3eb646d228812b1cff08c505ea2ee5a85d34c567e42f47b3b32658e377fe1"]]}] +[10:57:22.164] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the man who does not get to speak to me ever again.","created_at":1759417020,"id":"0003f6f22f077426f4767401b3c715c155695bc599a17f2e410b86b352326b02","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"77312434c8ffef801f94d196be8499d12d754700b7b45ac55be8b1e6de7a7955bdb511710fb0b1aeb6f562cd4c3bae64b7873420013e7a8b63b068d58921c528","tags":[["e","64212d25a35acdf1f86e614ea8a492d122957163841f0ac1678f3bac0a66879a","","root"],["e","6042bd2ef6d37c39692f773f3068af1a6d2315319a2ca2f0505a41e0f4a58dc6","","reply"]]}] +[10:57:22.224] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What's up, pervs? \nI see that 2 of you actually missed me. 🫂 \nI decided to accept, all of a sudden, an invitation to the Wiesn, or Oktoberfest, so I had a surprisingly nice time. Drinking, singing, food for a small city, and I even got some dick from the guy who invited me. It was a good time but crazy expensive. This might be the month when I start sucking dick for money.\nOn a side note, I'll be posting only once or twice a day for the foreseeable future because my porn phone is in a coma and it needs to stay plugged to work for more than 20 minutes.\nI'll try to post something more whore-ish tomorrow. Till then, here's some muscle.\nhttps://cdn.azzamo.net/446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0.jpeg https://cdn.azzamo.net/36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390.jpeg https://cdn.azzamo.net/10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b.jpeg https://cdn.azzamo.net/8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc.jpeg https://cdn.azzamo.net/65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08.jpeg https://cdn.azzamo.net/030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666.jpeg https://cdn.azzamo.net/8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7.jpeg https://cdn.azzamo.net/f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235.jpeg","created_at":1759417016,"id":"55b8b0008558936092dd6576c99b45b42f4e47498e51e652ca71f6679aeffede","kind":1,"pubkey":"03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","sig":"35a0e4fbafde3b9de1ca9feae748ee023e03f928945aed10776e39848653692a4d4480fa9ffb4588ff76da2e2cbddfb4c520535b3d968c99994baa20eb8e0496","tags":[["alt","A short note: What's up, pervs? \nI see that 2 of you actually mi..."],["r","https://cdn.azzamo.net/65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08.jpeg"],["r","https://cdn.azzamo.net/8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc.jpeg"],["r","https://cdn.azzamo.net/446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0.jpeg"],["r","https://cdn.azzamo.net/8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7.jpeg"],["r","https://cdn.azzamo.net/10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b.jpeg"],["r","https://cdn.azzamo.net/36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390.jpeg"],["r","https://cdn.azzamo.net/030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666.jpeg"],["r","https://cdn.azzamo.net/f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235.jpeg"],["imeta","url https://cdn.azzamo.net/446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0.jpeg","x 446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0","size 192328","m image/jpeg","dim 928x1228","blurhash _PKS@Fv#.Q%f%Kt7%L9a-.Myw^s:RkV[?[EM$%={jFWCsoEgbIbFODX8nOr??Zt6NbS#RkkCJT.6W;xZt7t7R+Nbxtt7Rkj[WVV[V[?GjFW;x[azoeWV-oxZR+NHWWWBo0","ox 446e89752b23d95cf3a91bbd104c0e073a115b051e8d56a8c66805303bcc98e0","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390.jpeg","x 36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390","size 145363","m image/jpeg","dim 928x1228","blurhash _AE2ICN^.R}r5RI;Vt5-njIpJ8-AjZJT0}soa0NbNus.-U%1$%r?EgNaxZR+=xJ8JT=d={SgRkR,oLR*R*NHNaxGEMso$iNbI;xGWoS2WBofba-AoLR*$jWWI;snfkWVoL","ox 36160d6fc54564cf28b78aeee6e3ed396928adde74a33bd38005e7d72e62a390","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b.jpeg","x 10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b","size 256993","m image/jpeg","dim 928x1228","blurhash _BFOP#~A_2gM^%?Ft7o|kC?Ga|xFxZIpyC58-onjV[j@WV}?$%E3WXI;NaWCkDn%^%t6E2WDM|NbW;jusooLNHt6?GR*NHazoJt6f6afoK%1bHR+oLM|?GoexZfkIpj[WV","ox 10001cda02c94c6df596db2c47fc73f805ebaf4b303442cb2e94c4e382bd353b","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc.jpeg","x 8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc","size 178914","m image/jpeg","dim 928x1228","blurhash _BI464?GC54;00=xS4~oofIBM|9a%1%L0MIp#9-U.7S#={4oIobb%L_2IpRQ,:snOro|%1RP9G?Goet6oLD*s.RjTds:rrRjM|kVb]%1t6E2M|s9bHxtn5oLODbHxZayWV","ox 8ff4a694c4194e80db24a0bc5975db72ba66c061c8d95d4e4d8fb3f9709e0cbc","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08.jpeg","x 65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08","size 194392","m image/jpeg","dim 928x1228","blurhash _bKTC?Ip~U%1xat6fk-oayRkoeNGWCWVt6oeRkR+Rkayt6t6oeRkR*xZoLR*xZWVNGf7oeoLs.WVj[s:j[WCfkayoej[aya|fkj@WVs:a|R*ayt6jtjZWVayj[j[j[a|ay","ox 65992a5d50d1f52d98487f01394d5a5798e604d8d146dad920bedd46e683ff08","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666.jpeg","x 030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666","size 153130","m image/jpeg","dim 928x1227","blurhash _EE28?NK~U57=xRkbv9u%19aR%E1t7IpR+n~JBjZNbso$*NFNH={a~kCj[xZ9uoJIoxas:W;Rj^jR+WUWBt7xat7R-kDM|axn%xtbbt6oLt7RkoJWCs:I:oLs.WBIpRkWB","ox 030ac4b186293f09f262cfe11b78d620a3f94afa73df6dfad8d36f7ae8349666","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7.jpeg","x 8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7","size 224112","m image/jpeg","dim 928x1228","blurhash _7Fgm_%e~TD+^4F0%1?G=_EgEMIqWXWW0$ENe:%0xZ-TayS4sA-TkVxZWVI;buWB-9J8EM-9Nb^PSh9^niR*R+xF^Os.RksnNwSN$i5lNH$ioykVxYnjEhaf$%s:s:soNa","ox 8c6d2d1b3da7b077c5f225bab8abb55ffc4fbff4d091aef3a05a09760b9c80b7","alt ","content-warning "],["imeta","url https://cdn.azzamo.net/f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235.jpeg","x f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235","size 211511","m image/jpeg","dim 928x1228","blurhash _VHUalxt~UNHocayM|-.R*%1WCIWWCM|R*M|RkxaR+oeoeM|RkNGt6ofoexZWCoeoKWVNHWCj[xtt6azWBWCWCxZM|azNHayoeWVj[Rkj[ayoeofj[j[oeWVj[ayWVoej@","ox f7b921d525ce8d155ca3c8a441cde5826fc422b1ff0a8c5f3574ac6395957235","alt ","content-warning "]]}] +[10:57:22.285] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"マリオギャラクシーやりãŸã„","created_at":1759417015,"id":"03cf8ed9dcd619896300136234ec05642eaf38c43a07ed754ebcf129e61e1da7","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ade0c9bf15dd29e59ebec92858d8fd9964eb1064cdc4ae5d0c8bdb0637e19fd3c759cc148bcec11db036d9df5e5a1064dad657d24629fc2d865f4e733fc27470","tags":[]}] +[10:57:22.345] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:57:22.406] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM. Don’t feed your ego this morning as BTC pumps. Stay humble and keep stacking.\nhttps://blossom.primal.net/9d375c5f0e4e5579ea69ab8deb4d23d1a3515e52545aa10e0a773c76052f8200.jpg","created_at":1759417041,"id":"a9fa3383c17ee8bb64b3fac3e5910e2a0b36772039e08177e2d955637feedee7","kind":1,"pubkey":"9a7f4cb6799860fec3ef8cc48004abcd48330b85a8b39e0ddc0da9092acc312a","sig":"e78944082a6f10170efe7f16957efbafe41a436df222cccfeba1824108b1bfb13fc86d2c6f68ffe1702990fa56009779c9a8ba33c530d1e138f82906a93e4b8e","tags":[]}] +[10:57:26.828] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Who doesn't love a friendly game of Spot the Fed every now and then?","created_at":1759417046,"id":"7c4b664650eddeeb644fee7555ec56d55ff97e92bf3a171ab27b666980c969e6","kind":1,"pubkey":"44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","sig":"04c3949edbf314e4bf31bdaf6ce9e2f6f280ed6fbbb62358006c4785040ed7eb473c3db27740a07ce235f93524ba144cdc23c66b1d53c694064acf3b794d330d","tags":[["alt","A short note: Who doesn't love a friendly game of Spot the Fed e..."],["e","715048dcd29ad51c29f0901eca93d4ce8c16a0cb1700913c1909eb900579aeb7","wss://relay.damus.io/","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","wss://relay.snort.social:57/"]]}] +[10:57:28.245] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Food for humans (FFH): \n\n-Single ingredient foods (beef, chicken, pork, fish, eggs, fruit, vegetables etc.) and...\n\n-Foods with labels that your great-grandmother would recognize all of = \"The great grandmother rule\" \n\nEat FFH and thrive, eat things that are not and suffer.","created_at":1759417047,"id":"c9bf283dcc5544fdd29ef229438957a8d6592a6cf16b8c650e9e68d5a63ca0d8","kind":1,"pubkey":"af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630","sig":"6cc05281855658c130e83dee70ad9fbafa02e904d745546264ccc3745d15b5ab32b63ae3db34bcb1e51b0df3b0f01fa9a112f7c459eb5b1657cd8850ba18ce62","tags":[]}] +[10:57:30.853] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"no Capes","created_at":1759417050,"id":"62a4fa07c2a014564487a58a306a4c3581824736f380906af857790dd32b1611","kind":1,"pubkey":"25bbf506e81275f96c1fd7cf6bed2fcd93a991f43a8672edef9159259c1915e4","sig":"cc647bddfa87e8eb6dac7aecf75e0ea511a76025f38fbf3cd47b57fc7d7cf0548d47e1374587de40d0e53a78778441a36d0e1bbf12cc7034bb2d0744138e9fc5","tags":[["e","66346e65fadc454c440d9646b014ee39100057cac0d4abe00ae2f085edaed5eb","wss://relay.primal.net","root"],["p","744ecc9a119a92da88b1f448b4030cdbc2fec5c37ea06ebdd026e742b002af7f","wss://nos.lol/","mention"],["p","5b29255d5eaaaeb577552bf0d11030376f477d19a009c5f5a80ddc73d49359f6"],["r","wss://btc.klendazu.com/"],["r","wss://bwcervpt.mooo.com/"],["r","wss://nos.lol/"],["r","wss://nostr.thurk.org/"]]}] +[10:57:33.741] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ha. Agreed, but rarely the case. We have to dig ourselves out. Most probably won't.","created_at":1759417053,"id":"0f5704b05da35a8cbae9144d86e526d156fefcd4aff2ef5bf0e252815d8fd415","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6198a1a47fee57d890a98b9826ee040a828585ad297fd384e91bb624123c3e06a1b046d8888936d7d71935b7250d70737c7b5b1293664a3fcc94fd2a54f2503e","tags":[["alt","A short note: Ha. Agreed, but rarely the case. We have to dig ou..."],["e","feb75a8c7061ac0fc672729773f4577a312ad8b5ab37c72d5ae0cd7b42dfadbd","wss://nostr-03.dorafactory.org/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["e","cc4dd976cc9429de872561426471191d613114a984c742976376b5d876e0bef6","wss://relay.damus.io/","","6c78d3fbb485c7e5d70ad3bc4987fb740a65f1aa97df9915b16e58d7005ab080"],["e","e015aabd0b6cc34e40652d78827007186787f71d3e8685686e7e9fd91c80a3e9","wss://noornode.nostr1.com/","reply","f33285217e976ad9caf0546445ad8107db98f65967cdce6cce45e60da00ee32a"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"],["p","6c78d3fbb485c7e5d70ad3bc4987fb740a65f1aa97df9915b16e58d7005ab080","wss://nos.lol/"],["p","f33285217e976ad9caf0546445ad8107db98f65967cdce6cce45e60da00ee32a","wss://noornode.nostr1.com/"]]}] +[10:57:34.169] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://share.yabu.me/82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003/80c39f6aa03fa0e354e060b283041c5a865a974436579506b433fdb63c6efa6f.webp","created_at":1759417053,"id":"fbd1e049a7e95ba5afd3cbafb1bb1b765faa98d4ec34ee15b06dd735a480ff0b","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"af5a989ce44fd78818356c9ce966ab4c47ccc09926aed3aa1df888a848ff224c4a248286c1b57388218e04d680a91829317893f44e87026fb60ee96b5b0302a1","tags":[]}] +[10:57:41.992] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"weeeehh me too! I had neon pink at one point and I was soooooooo inpressed about it LOL 🤣 \n\n","created_at":1759417061,"id":"39ba656cff761a69017ebf23d54819783ffc245ac499817bb13f4da5a0836de0","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"48c3f679d666bc7d7967b361140416ba7752e3af91d5b5d262bb622795e787e41e4f015edc24f798ce31ed1563cb32537ed9823e3a8b5ba812c120686346cbbe","tags":[["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:57:42.113] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:57:42.224] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:57:42.906] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm â˜•ï¸ and PV 🌺 ","created_at":1759417062,"id":"542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"3bf1ad5dd357e504de991203dc6c05c410c2c6f8d08e8be28e93901465aa50a1d586f7c8690fef47e6afdf35da0d4a9bfaead81e8c2535a28345ecd9bd6b338d","tags":[]}] +[10:57:43.092] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"or give me this back \nhttps://media1.tenor.com/m/c2cip48ovrYAAAAC/nokia-cellphone.gif","created_at":1759417062,"id":"8cec6aa596e112ae592eb5232ace859a81fd20261f555484a1c14d8cada9cbfe","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"ffd32f6a1fddeb3e0c90d8d63540ea694de96c907f4f7838fbfbb84cc31f54dd6276ad8b2e002c1c4caacf3e7c47d0ae6fdcb18e1efaac1d06d3a6a114e6d0a2","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","1e9ab190c0bd450f3a4fb22ed08f7d3ae9e46b584e5dd05b40c8bf8001c26070","wss://nostrelites.org/","reply","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:57:47.164] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Unless the anon is building something interesting or spicy, I find most anons are just noise machines","created_at":1759417066,"id":"e32109ace9b8359eecd20bb589086855495b3a74892722030b40ed9de95b067d","kind":1,"pubkey":"df478ecdffe91db90469aeced8d5a33efcaaf75231bb4d768e711184495107a7","sig":"cf5f78961846650a799dceae5a2012c8b5c4ed0ba6563125c0e6598a48149e64ef47fe5571c75652dc99c1157885df3ba24acd5593b66b27aa3676c1d9cdd21b","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.damus.io/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[10:57:47.336] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Haven't seen it happen yet, but i imagine NOSTR is going to be a springboard for tens of thousands in the coming years. \n\n","created_at":1759417067,"id":"4a404579418128ef9d25c74820c88d10ce374491d20ea2257fa69b6405f27959","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"73586360d94d11e7885f5c05da189fcfc0319fbf9cf8448eab7b35f4aa6996517101f2ab6527f764eeb3c8d61f9aeca6faeca0c5ed72390aa1df1fa170674d90","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["e","5ba8a0dc8feebade6b08d6f8b1e2c163296dc39347970147ef45e8bb71a47114","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[10:57:48.061] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"何ã§ã¬ã‚‹ã½ï½¶ï¾žBotãŒã‚れã®è¨ˆæ¸¬æ©Ÿèƒ½ã‚’ããªãˆã¦ã‚‹ã‚“ã â€¦ï¼Ÿ","created_at":1759417065,"id":"c2756f459cb952da698b61fa1551ccc1a206ca7fae33e696d9f07370e2c72bff","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"984f51cff189be329adff9772cf29bcc0ba4861f4702bc7fe02e546b923f0009cf1eac05c9732018609cbfb236fd2920976def7e2a2012e5e7478a30bdcdec7d","tags":[["alt","A short note: 何ã§ã¬ã‚‹ã½ï½¶ï¾žBotãŒã‚れã®è¨ˆæ¸¬æ©Ÿèƒ½ã‚’ããªãˆã¦ã‚‹ã‚“ã â€¦ï¼Ÿ"]]}] +[10:57:51.220] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:57:51.373] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Haven't seen it happen yet, but i imagine NOSTR is going to be a springboard for tens of thousands in the coming years. \n\n","created_at":1759417067,"id":"4a404579418128ef9d25c74820c88d10ce374491d20ea2257fa69b6405f27959","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"73586360d94d11e7885f5c05da189fcfc0319fbf9cf8448eab7b35f4aa6996517101f2ab6527f764eeb3c8d61f9aeca6faeca0c5ed72390aa1df1fa170674d90","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["e","5ba8a0dc8feebade6b08d6f8b1e2c163296dc39347970147ef45e8bb71a47114","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[10:57:51.433] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Unless the anon is building something interesting or spicy, I find most anons are just noise machines","created_at":1759417066,"id":"e32109ace9b8359eecd20bb589086855495b3a74892722030b40ed9de95b067d","kind":1,"pubkey":"df478ecdffe91db90469aeced8d5a33efcaaf75231bb4d768e711184495107a7","sig":"cf5f78961846650a799dceae5a2012c8b5c4ed0ba6563125c0e6598a48149e64ef47fe5571c75652dc99c1157885df3ba24acd5593b66b27aa3676c1d9cdd21b","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.damus.io/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[10:57:51.524] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"何ã§ã¬ã‚‹ã½ï½¶ï¾žBotãŒã‚れã®è¨ˆæ¸¬æ©Ÿèƒ½ã‚’ããªãˆã¦ã‚‹ã‚“ã â€¦ï¼Ÿ","created_at":1759417065,"id":"c2756f459cb952da698b61fa1551ccc1a206ca7fae33e696d9f07370e2c72bff","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"984f51cff189be329adff9772cf29bcc0ba4861f4702bc7fe02e546b923f0009cf1eac05c9732018609cbfb236fd2920976def7e2a2012e5e7478a30bdcdec7d","tags":[["alt","A short note: 何ã§ã¬ã‚‹ã½ï½¶ï¾žBotãŒã‚れã®è¨ˆæ¸¬æ©Ÿèƒ½ã‚’ããªãˆã¦ã‚‹ã‚“ã â€¦ï¼Ÿ"]]}] +[10:57:51.584] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"or give me this back \nhttps://media1.tenor.com/m/c2cip48ovrYAAAAC/nokia-cellphone.gif","created_at":1759417062,"id":"8cec6aa596e112ae592eb5232ace859a81fd20261f555484a1c14d8cada9cbfe","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"ffd32f6a1fddeb3e0c90d8d63540ea694de96c907f4f7838fbfbb84cc31f54dd6276ad8b2e002c1c4caacf3e7c47d0ae6fdcb18e1efaac1d06d3a6a114e6d0a2","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","1e9ab190c0bd450f3a4fb22ed08f7d3ae9e46b584e5dd05b40c8bf8001c26070","wss://nostrelites.org/","reply","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:57:51.645] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm â˜•ï¸ and PV 🌺 ","created_at":1759417062,"id":"542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"3bf1ad5dd357e504de991203dc6c05c410c2c6f8d08e8be28e93901465aa50a1d586f7c8690fef47e6afdf35da0d4a9bfaead81e8c2535a28345ecd9bd6b338d","tags":[]}] +[10:57:51.705] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"weeeehh me too! I had neon pink at one point and I was soooooooo inpressed about it LOL 🤣 \n\n","created_at":1759417061,"id":"39ba656cff761a69017ebf23d54819783ffc245ac499817bb13f4da5a0836de0","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"48c3f679d666bc7d7967b361140416ba7752e3af91d5b5d262bb622795e787e41e4f015edc24f798ce31ed1563cb32537ed9823e3a8b5ba812c120686346cbbe","tags":[["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[10:57:51.766] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://share.yabu.me/82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003/80c39f6aa03fa0e354e060b283041c5a865a974436579506b433fdb63c6efa6f.webp","created_at":1759417053,"id":"fbd1e049a7e95ba5afd3cbafb1bb1b765faa98d4ec34ee15b06dd735a480ff0b","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"af5a989ce44fd78818356c9ce966ab4c47ccc09926aed3aa1df888a848ff224c4a248286c1b57388218e04d680a91829317893f44e87026fb60ee96b5b0302a1","tags":[]}] +[10:57:51.826] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ha. Agreed, but rarely the case. We have to dig ourselves out. Most probably won't.","created_at":1759417053,"id":"0f5704b05da35a8cbae9144d86e526d156fefcd4aff2ef5bf0e252815d8fd415","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6198a1a47fee57d890a98b9826ee040a828585ad297fd384e91bb624123c3e06a1b046d8888936d7d71935b7250d70737c7b5b1293664a3fcc94fd2a54f2503e","tags":[["alt","A short note: Ha. Agreed, but rarely the case. We have to dig ou..."],["e","feb75a8c7061ac0fc672729773f4577a312ad8b5ab37c72d5ae0cd7b42dfadbd","wss://nostr-03.dorafactory.org/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["e","cc4dd976cc9429de872561426471191d613114a984c742976376b5d876e0bef6","wss://relay.damus.io/","","6c78d3fbb485c7e5d70ad3bc4987fb740a65f1aa97df9915b16e58d7005ab080"],["e","e015aabd0b6cc34e40652d78827007186787f71d3e8685686e7e9fd91c80a3e9","wss://noornode.nostr1.com/","reply","f33285217e976ad9caf0546445ad8107db98f65967cdce6cce45e60da00ee32a"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"],["p","6c78d3fbb485c7e5d70ad3bc4987fb740a65f1aa97df9915b16e58d7005ab080","wss://nos.lol/"],["p","f33285217e976ad9caf0546445ad8107db98f65967cdce6cce45e60da00ee32a","wss://noornode.nostr1.com/"]]}] +[10:57:51.887] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"no Capes","created_at":1759417050,"id":"62a4fa07c2a014564487a58a306a4c3581824736f380906af857790dd32b1611","kind":1,"pubkey":"25bbf506e81275f96c1fd7cf6bed2fcd93a991f43a8672edef9159259c1915e4","sig":"cc647bddfa87e8eb6dac7aecf75e0ea511a76025f38fbf3cd47b57fc7d7cf0548d47e1374587de40d0e53a78778441a36d0e1bbf12cc7034bb2d0744138e9fc5","tags":[["e","66346e65fadc454c440d9646b014ee39100057cac0d4abe00ae2f085edaed5eb","wss://relay.primal.net","root"],["p","744ecc9a119a92da88b1f448b4030cdbc2fec5c37ea06ebdd026e742b002af7f","wss://nos.lol/","mention"],["p","5b29255d5eaaaeb577552bf0d11030376f477d19a009c5f5a80ddc73d49359f6"],["r","wss://btc.klendazu.com/"],["r","wss://bwcervpt.mooo.com/"],["r","wss://nos.lol/"],["r","wss://nostr.thurk.org/"]]}] +[10:57:51.947] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Food for humans (FFH): \n\n-Single ingredient foods (beef, chicken, pork, fish, eggs, fruit, vegetables etc.) and...\n\n-Foods with labels that your great-grandmother would recognize all of = \"The great grandmother rule\" \n\nEat FFH and thrive, eat things that are not and suffer.","created_at":1759417047,"id":"c9bf283dcc5544fdd29ef229438957a8d6592a6cf16b8c650e9e68d5a63ca0d8","kind":1,"pubkey":"af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630","sig":"6cc05281855658c130e83dee70ad9fbafa02e904d745546264ccc3745d15b5ab32b63ae3db34bcb1e51b0df3b0f01fa9a112f7c459eb5b1657cd8850ba18ce62","tags":[]}] +[10:57:52.008] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:57:52.069] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"å¯ã‚?","created_at":1759417071,"id":"b9789ddef67e1c2ddb11301fe6648021b06e75a3bde33c2104fc8dd0b5b54bb4","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"680656dd30cc76fa06935a63b1018abe6b1aa392fb5467072b778c2678b5386860bdb23d030065e6dfbe92f93d5127ab7d243104d42af4a740b0335584e328d4","tags":[]}] +[10:58:02.361] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Tag me when there's fall color on the leaves! \n\n","created_at":1759417081,"id":"c0ffa5354a71bc5cc86c76dbca0ae94bec1e88b51e590c71927f4db396e9c078","kind":1,"pubkey":"c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","sig":"7d0ce41b8cd57663bf19d7d1658ecf3c9fb1cc7b96cd4e0b7fbc80edfc2e3308dd0226504e87c8e6e3b17fd3e02817f24cc696479c5bc8f5b260dbc58c15af07","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"]]}] +[10:58:05.230] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"because why?\n\ncall me a bitch in anger?\nnever again.","created_at":1759417084,"id":"af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"24ca4823c86db0e40fcf56cf7ddd560bd88a149fa4b19896d5ff5ce627677d2a278a7300cd48a522afd98642aa1c5aaf0a5839b568dd8ce3b66676a4f0ac9960","tags":[]}] +[10:58:11.367] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ï½¶ï¾žBotãŒã‚れã®è¨ˆæ¸¬ã¾ã§ã§ãã‚‹ãªã‚“ã¦â€¦ã³ã£ãりã—ã‚…ã”ã„ã‹ã‚‚₠・ᴗ・ ₎ 自動ã§ã‚„りãŸãŒã‚‹æ€§è³ªãªã®ã‹ãªï¼Ÿã¡ã‚‡ã£ã¨ã“ã‚ã„æ°—ã‚‚ã™ã‚‹ã‹ã‚‚。設定ã¨ã‹æ¨©é™ã¡ã‚ƒã‚“ã¨è¦‹ã¦ãŠã„ãŸã»ã†ãŒã‚ˆã•ãã†ã‹ã‚‚","created_at":1759417090,"id":"99a67e44cab804b988260659ec97cf588f3c1d3f625cb27ff7b77fd8963f42a7","kind":1,"pubkey":"b4a9f4c8213a619dbcf7bb730d7525b124e6d74ed467d16d81dabdf408029df5","sig":"ca99e1a2f83aa58ae39bce4730a275ccb357105393bbb9f8e84bedeea9cd333c2555876c2319f5ad42287a0b759a01c6987620ea54315df5168ba2150a0ced7c","tags":[]}] +[10:58:12.153] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:58:12.264] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:58:14.366] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Encontrarás más felicidad si te haces niño que si te haces adulto.\r\n\r\nAnónimo.","created_at":1759417093,"id":"bb41d2329f7c2454049d6910985c1a0a95081c751a9e52bc9bfb8d92a7f35f25","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"27641ceaeb15f2165a57ba24de9cfb2ce7a189255f36c6f640c393a1bcc21da45751dece0084ea55f005f7c23ecc5330fbe5b650b5ee2e954b634b8c3b0860f4","tags":[]}] +[10:58:15.976] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Block OP_RETURN Transactions\nTo prevent your Bitcoin Core or Knots node from relaying or mining OP_RETURN transactions, add this to your bitcoin.conf:\n\n# Rejects all transactions containing OP_RETURN outputs\ndatacarrier=0\n\nThis works in all versions and is not deprecated. Your node’s mempool will stay free of OP_RETURN data.","created_at":1759417095,"id":"663b97b69dfb36934a3479662680ef4881b29e4d1a7213f253f938111ec4588e","kind":1,"pubkey":"bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b","sig":"253f6a75f8064e3085df41fdad2e7adcd4d53b7ee11bffeb5dc035ee14e100204184077b7b4866ce68b2f1756f95c6129daf5966db3538b7edd9d437a3ccb8ea","tags":[]}] +[10:58:19.272] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãˆã€œæ˜Žæ—¥ã‚¬ãƒ¼ãƒ«ã‚ºãƒãƒ³ãƒ‰ã‚¯ãƒ©ã‚¤ç·é›†ç·¨ã§ã‚‚観ã¦ã“よã£ã‹ãªã‚","created_at":1759417098,"id":"781bc7069b84fdecef29a19dbe312be77138571b4476af631b41b05e4be6c8c3","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"8b44a82cc0b01b9229db4b25c882822ec6e61c3824b3bfc3be74bdc9b78eef20009973dc70f01d66d9892a01aa9b890970ce2b9910708b10d1c796fb7267cb2c","tags":[]}] +[10:58:21.213] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:58:21.515] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Where does the name GTFO Handbook come from?\n\nEvery business needs a tagline, and for my business Sovereign Landing, the tagline is \"Go Lightfooted\". When my friend Rasbelin heard it, he quipped that a better tagline for a business like this would be just \"GTFO\". \n\nThat thought stayed with me, and I put that idea into practice with the name of this book.\n\n https://blossom.primal.net/c4f93ae7db946ba06f033e105e8354473cec5813789dfad1caab6779551e1d98.png \n\nIf you live in your country of origin, chances are that you are heavily exploited by people who seem to think they somehow own you, and that the fruits of your labor belong primarily to them.\n\nYou do the work, and they enjoy the benefits - in the name of fairness!\n\nIf you make the mistake of pointing out that it's all getting rather unfair, they're quick to tell you to learn your place, to STFU and to GTFO.\n\nThe GTFO Handbook is about giving them exactly what they want (or to be more precise: what they ask for).\n\nThere really is no need to fight any of them!\n\nOne of the best things about location independence is the ease of dealing with this leftard NPC crowd, especially their retarded comeback to any criticism of their ever-crazier policies of exploitation and violent coercion:\n\n https://blossom.primal.net/313c281d9fa6ec4116bc1bd61264ecf46245f36740b9c5a9b3a3249da0abef20.png \n\nWhen you live in a country where people like this are in power, you feel you have to spend endless amounts of energy in trying to convince them to \"come back to their senses\".\n\nI see so many people trying to desperately figure out ways to somehow convince the violent expropriators that their socialist dreams are killing the country, and if they continue exploiting the productive people, the country will go to hell.\n\nThey cannot be convinced, because they actually WANT all of the destruction that is now happening. Their idea of building a better world requires first destroying the old, and they are getting exactly that.\n\nYou don't have to stay stuck in those endless, desperate political fights (that you will never win!).\n\nWhen they tell you to GTFO, you can just give them a simple reply:\n\n https://blossom.primal.net/9fe9ac6bdaa5448727b3ba90956133777279188f225595eb54f331f61d552f35.png \n\nAt first, you'd think that the violent expropriators might react like this:\n\n https://blossom.primal.net/de0313d0fb3a515211208c875f637310e08f2a084faa66d372ee2a6e05885c4d.png \n\nIn my experience, the truth is much worse: they're simply happy with the thought of you leaving!\n\nThat \"processing\" part never seems to happen, and their \"if you don't like it\" noise is just an automated knee-jerk reaction to their world view being challenged: there's no actual thought behind it.\n\nThey aren't really bothered by productive people moving away, because the combination of the fiat money printer and the democratic \"welfare\" state DOES provide them with the real option of living endlessly on debt (until it doesn't, but the NPC is unable to think that far).\n\nFrom their point of view, you moving abroad just works: these annoying ideas challenging their socialist paradise just go away.\n\nTheir problem is solved, so why be angry?\n\nFor those with even half of a functioning brain, the conclusion from this is obvious: this can't end well… \n\nI discuss what all of this means in my book, especially part 5 (how and why to ignore politics):\n\nhttps://www.sovereignlanding.com/GTFO-Handbook/","created_at":1759417130,"id":"84a2d2c98823a11e1c4c6d53a8d2c0ee44aa7adb7b77548eaf806dfe8dfac6f7","kind":1,"pubkey":"50f4003e70fcb08e8f280711ccc6d30f4a564783d0146627d6f418cb7b5ec280","sig":"58a69827b7fc87807a85fd449a92ac46d69d13dd05f3e7ffbeb3805bb7bf22a1993e92373e3e6975b0d0e4c1fc6855f253ec5863c02b8bd13f11ee6b5f1e9394","tags":[["r","wss://feeds.nostr.band/ru"],["r","wss://feeds.nostr.band/tony"],["r","wss://feeds.nostr.band/typescript"],["r","wss://feeds.nostr.band/video"],["r","wss://nos.lol/"],["r","wss://nostr.wine/","read"],["r","wss://nostrelites.org/"],["r","wss://premium.primal.net/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.snort.social/"],["r","wss://wot.nostr.party/"],["r","wss://wot.sovbit.host/"],["r","wss://wot.sudocarlos.com/"],["r","wss://eden.nostr.land/","read"]]}] +[10:58:21.576] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãˆã€œæ˜Žæ—¥ã‚¬ãƒ¼ãƒ«ã‚ºãƒãƒ³ãƒ‰ã‚¯ãƒ©ã‚¤ç·é›†ç·¨ã§ã‚‚観ã¦ã“よã£ã‹ãªã‚","created_at":1759417098,"id":"781bc7069b84fdecef29a19dbe312be77138571b4476af631b41b05e4be6c8c3","kind":1,"pubkey":"274a2e86f1a7acb45b01f290284a343c248cb913677b43d7f7615b513194d8b0","sig":"8b44a82cc0b01b9229db4b25c882822ec6e61c3824b3bfc3be74bdc9b78eef20009973dc70f01d66d9892a01aa9b890970ce2b9910708b10d1c796fb7267cb2c","tags":[]}] +[10:58:21.636] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Block OP_RETURN Transactions\nTo prevent your Bitcoin Core or Knots node from relaying or mining OP_RETURN transactions, add this to your bitcoin.conf:\n\n# Rejects all transactions containing OP_RETURN outputs\ndatacarrier=0\n\nThis works in all versions and is not deprecated. Your node’s mempool will stay free of OP_RETURN data.","created_at":1759417095,"id":"663b97b69dfb36934a3479662680ef4881b29e4d1a7213f253f938111ec4588e","kind":1,"pubkey":"bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b","sig":"253f6a75f8064e3085df41fdad2e7adcd4d53b7ee11bffeb5dc035ee14e100204184077b7b4866ce68b2f1756f95c6129daf5966db3538b7edd9d437a3ccb8ea","tags":[]}] +[10:58:21.697] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Encontrarás más felicidad si te haces niño que si te haces adulto.\r\n\r\nAnónimo.","created_at":1759417093,"id":"bb41d2329f7c2454049d6910985c1a0a95081c751a9e52bc9bfb8d92a7f35f25","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"27641ceaeb15f2165a57ba24de9cfb2ce7a189255f36c6f640c393a1bcc21da45751dece0084ea55f005f7c23ecc5330fbe5b650b5ee2e954b634b8c3b0860f4","tags":[]}] +[10:58:21.757] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ï½¶ï¾žBotãŒã‚れã®è¨ˆæ¸¬ã¾ã§ã§ãã‚‹ãªã‚“ã¦â€¦ã³ã£ãりã—ã‚…ã”ã„ã‹ã‚‚₠・ᴗ・ ₎ 自動ã§ã‚„りãŸãŒã‚‹æ€§è³ªãªã®ã‹ãªï¼Ÿã¡ã‚‡ã£ã¨ã“ã‚ã„æ°—ã‚‚ã™ã‚‹ã‹ã‚‚。設定ã¨ã‹æ¨©é™ã¡ã‚ƒã‚“ã¨è¦‹ã¦ãŠã„ãŸã»ã†ãŒã‚ˆã•ãã†ã‹ã‚‚","created_at":1759417090,"id":"99a67e44cab804b988260659ec97cf588f3c1d3f625cb27ff7b77fd8963f42a7","kind":1,"pubkey":"b4a9f4c8213a619dbcf7bb730d7525b124e6d74ed467d16d81dabdf408029df5","sig":"ca99e1a2f83aa58ae39bce4730a275ccb357105393bbb9f8e84bedeea9cd333c2555876c2319f5ad42287a0b759a01c6987620ea54315df5168ba2150a0ced7c","tags":[]}] +[10:58:21.818] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"because why?\n\ncall me a bitch in anger?\nnever again.","created_at":1759417084,"id":"af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"24ca4823c86db0e40fcf56cf7ddd560bd88a149fa4b19896d5ff5ce627677d2a278a7300cd48a522afd98642aa1c5aaf0a5839b568dd8ce3b66676a4f0ac9960","tags":[]}] +[10:58:21.878] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Tag me when there's fall color on the leaves! \n\n","created_at":1759417081,"id":"c0ffa5354a71bc5cc86c76dbca0ae94bec1e88b51e590c71927f4db396e9c078","kind":1,"pubkey":"c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","sig":"7d0ce41b8cd57663bf19d7d1658ecf3c9fb1cc7b96cd4e0b7fbc80edfc2e3308dd0226504e87c8e6e3b17fd3e02817f24cc696479c5bc8f5b260dbc58c15af07","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"]]}] +[10:58:21.939] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"å¯ã‚?","created_at":1759417071,"id":"b9789ddef67e1c2ddb11301fe6648021b06e75a3bde33c2104fc8dd0b5b54bb4","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"680656dd30cc76fa06935a63b1018abe6b1aa392fb5467072b778c2678b5386860bdb23d030065e6dfbe92f93d5127ab7d243104d42af4a740b0335584e328d4","tags":[]}] +[10:58:21.999] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Haven't seen it happen yet, but i imagine NOSTR is going to be a springboard for tens of thousands in the coming years. \n\n","created_at":1759417067,"id":"4a404579418128ef9d25c74820c88d10ce374491d20ea2257fa69b6405f27959","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"73586360d94d11e7885f5c05da189fcfc0319fbf9cf8448eab7b35f4aa6996517101f2ab6527f764eeb3c8d61f9aeca6faeca0c5ed72390aa1df1fa170674d90","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["e","5ba8a0dc8feebade6b08d6f8b1e2c163296dc39347970147ef45e8bb71a47114","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[10:58:22.060] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Unless the anon is building something interesting or spicy, I find most anons are just noise machines","created_at":1759417066,"id":"e32109ace9b8359eecd20bb589086855495b3a74892722030b40ed9de95b067d","kind":1,"pubkey":"df478ecdffe91db90469aeced8d5a33efcaaf75231bb4d768e711184495107a7","sig":"cf5f78961846650a799dceae5a2012c8b5c4ed0ba6563125c0e6598a48149e64ef47fe5571c75652dc99c1157885df3ba24acd5593b66b27aa3676c1d9cdd21b","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.damus.io/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[10:58:22.120] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:58:27.743] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://npub1pefpytg7h9wdmza97evpta73eyf94rq5mq5cn6h992eknm4xcljqq2tv2p.blossom.band/4c72ac26cdd689f607e3c29e967eab29aac72cbd68d34b31e18a758732aca647.mp4\n📊 Tagging Progress: 23.3% (1428 of 6119 videos tagged)\n\n🎯 Reply to this note with emoji reactions that best describe this video.\n\nâš¡ Weekly competition in progress - top 3 taggers earn 1 sat per video!\n🌠Visit the URL in my profile for more videos to tag!\n#reactionbrowser #gifs","created_at":1759417107,"id":"0000099b67fd7acc910abf1d42d74a3f3d8f5029559f07ec7302c1b5f92f457a","kind":1,"pubkey":"470e98c677ae700957d2244e04fc991b53dd6995e74bfb42cb97874fd7a10197","sig":"27f17e42368beaf9a36f76c0d3a66f64003857c37cfba9c2c1a84faf2f85d672a89d8d30303b6fac5c066ea10a709a50af3497e2e2f22bc16a85784049965bab","tags":[["nonce","1597399","20"]]}] +[10:58:29.906] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yeah there are many things that bugged me about windows when I got into it. But that was back in the ubuntu 12-13 days and to me Windows was still more friendly at my young age XD. So instead I learned how to make Windows do what I want. We was chatting in the slack about my adventures running a windows cluster and supporting servers. If there is a Windows quirk you don't like, chances are there is an administrative template to change the behavior. ","created_at":1759417108,"id":"2aff69f858d9b2253ebad25f7081eef6edf70a55901b0a73fbc90440ceb33a74","kind":1,"pubkey":"036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","sig":"7da7fba76b9ce58c5eeb580389b1b77b84a58132bf4db8c30c430114731df5f8e561124900ef26037d6729bb1d05094cd1b850522873d9c2821c54275de51f46","tags":[["e","772736ff4d4e5eb22aa08dc0c4265b3d2530756daa457c4ac3395a64355e4db8","wss://theforest.nostr1.com/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","de57529eae72c09d1ee275c124be3941364aee6fb797f9a09884db10c2ceaa7a","wss://theforest.nostr1.com/","reply","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"]]}] +[10:58:30.963] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"First they took our satisfying hang ups, then they took our keyboard, and then they took our home button","created_at":1759417110,"id":"692b8fd1c6257a06c09c86cd921fe6465721a6842572241e62320045f28a0b5f","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"09c5fba5cf25113525429e9464fd3fabd20696ba7adb771d2f924895d47cf274d095667055a2eec067afcd60a2ef804b04123fb709473c2ba9c06bf90bb58d35","tags":[["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[10:58:33.430] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"there is no doing nostr wrong.\n\nyou are here.\n\nyou are winning","created_at":1759417107,"id":"e2b26b22bb844ec79128588af6bf8016dcc32620e567e20ce1bdd76e1925f40f","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"4f896014dde5cc6efb37c059a613bb7f096c7ca17c43ab3ed609255563b7952be4d62f8c0c6a577f8c436236f7931ec2b859f8b99a862c486e6e1af879d8ac46","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.damus.io/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[10:58:35.485] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm Nostr \nhttps://blossom.primal.net/b2753c66a897df3804facab44ce52f09323e4854c4c6d30e420b87c5a4bb4771.jpg","created_at":1759417114,"id":"e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"1fa9693d60ee228622bf7363880b5bb5725142769730d7aa94cacdca3da42df56f5bb3b9a6bef79e27b9e9773185214ca6c79a3bb91e7791384f22049c269336","tags":[]}] +[10:58:35.546] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"æ­¤åˆ»æ­£å¼æ”¾å‡ï¼ https://image.nostr.build/523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46.jpg","created_at":1759417114,"id":"1c1b22deafe16414ba720a8a44122f1c11e7c5938fe6e4828709b766b434a934","kind":1,"pubkey":"0d4e54ac92f66e90aac8ad45dc17ffbe2e1e2a14e834d923c5c4605c23709874","sig":"db06fea98a2b9b64270c1a4c69b3e496d98733b706ed8783e03a61f714c90a57e9d9c1ca17b0cfc8cb010eeb0b11df42177ffa57a6048a49873e0c7184b5fdb7","tags":[["r","https://image.nostr.build/523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46.jpg"],["imeta","url https://image.nostr.build/523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46.jpg","m image/jpeg","alt Verifiable file url","x 9de40bbc8552e42f4673a79d12a06550b1f765801be97e3668ef6e31f7deba71","size 93033","dim 1156x868","blurhash #5B:BCJ$rDpv+uk;M{S1V]4q9bIVMzJ7%1s:kCbFR|~AKfz;TInOSieUNaby9yRko}wgELk8jEso+@XO+uTIkCNG$*O?sAIvxHTJrrk8t7NawdXSK5VaJ.s;jFxaI:#,oz","ox 523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46"]]}] +[10:58:40.575] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub13pphdgv0qmt93fa0u8zzqmlnpk6fpspcl77dhff8s0820ath3x6sf4fflu ","created_at":1759417120,"id":"88f8f54848294fb5cf4c2fe70236b01947211a045b53d0fb35da1ef58c6cbf3f","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"e782a91aa6d96b03c4a9316088f83d8a5b05edc36f47225fb2f844b99c47af1d3db48c4bd1e5502c26b80d3191c0316c5e99b0dc25b81f732eec367ed33d7e79","tags":[["e","5bc4e3bf10e12aed8a4f271332ef4158fcf6796e5a6973ffd573a4f9760e04e8","wss://relay.primal.net","root"],["p","082b4d8908d40cab7235bcf82f91c3727ee39eb475a3e8f6d4a103648141e1d9","","mention"],["p","884376a18f06d658a7afe1c4206ff30db490c038ffbcdba52783cea7f57789b5","","mention"]]}] +[10:58:42.135] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:58:42.246] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:58:46.562] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Believe in yourself and have a fantastic day, my fren! \nhttps://images2.imgbox.com/45/fe/Kn6keqrs_o.jpg \n#ToshiPeaches","created_at":1759417125,"id":"a679378095076808ae972350579df0258a7a90e1aa30df40ef01472ca4e9fbb0","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"05b34e968aa24e655be2b54708f28f251e182bd9800ff6ac624566bf24c0af07bdefca3f3086d278713ff7f6c43a6724d2d8f9510070910e3464e7e87538274a","tags":[]}] +[10:58:47.075] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"LFG âœï¸\n\n🔥\n\n#devste","created_at":1759417126,"id":"144f4ecb1e517e74bc9f7b7a836232508e411e7a9941130cf50dc65785fbfb18","kind":1,"pubkey":"17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","sig":"e595cb0c143828251897a7b8f7ad025a7b27b90c99c92740a75196a83ece0a728aabd397329c5799a846a2a363057380d6cbfc0ff15bee755474830cfaf25670","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://nostr.wine/","root"],["e","bd26c513bfe7ed7696964b4e310b2018143814d20c939a11fb902db883639327","wss://no.str.cr","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["t","devste"]]}] +[10:58:48.020] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The blockchain is a glorified ledger. Its literally just double entry accounting but transparent and decentralized.\n\nBitcoin exists because fiat money (usd, euro, etc) is a sinking ship and can be manipulated by governments at will. They can print more (create inflation) or raise and lower interest rates at will. They can shut down access to all your money at the touch of a button and they can prevent you from spending your money if they don't like what you're buying. It \"enslaves\" people because we are beholden to something they unilaterally control.\n\nBitcoin is the escape. It is an alternative monetary system with safeguards no other crypto can claim. One of which:\n\nAll other coins can be minted or rugged by the owner, no different than US dollars. Bitcoin has no owner.\n\nBitcoin mining (the process if \"proof of work\" specifically) ensures that there is a cost to generating coins and to process transactions. This prevents bad actors because they have to spend heavily to attack.\n\nNodes offer consensus and validate blockchain entries. No one person can go in and alter records or roll back the blockchain (like coughETHcough). Bitcoin is Immutable.\n\nMany coins will claim these things but if you have a person or team that controls the keys to the kingdom, none of that matters. Does your coin have a CEO or President? If so, its no better than digital dollars at best.\n\nBitcoin stands alone.","created_at":1759417127,"id":"3609c41f7436937d4d390e4b73f685d17a9f0217696564fbee5331d9a44c92e3","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"cc3bcba186a935982962d653c109738a2bcaa15175156e659cf74444ee49b1bd499f88850fd4817954e9b4d6612f6ff0946f7622bd380f82c6ee107fc2df5834","tags":[["e","9ae53fea751fc1007b611940cea0e9efb8a18bbb16f2b611b18772e9d9cac237","","root"],["e","173830e56b52af63b70325993eab644dd866e162c0d7cb9c338f4c2e91e26a57"],["e","f4ec5857f18a0543c6be3a924532a54e02a954f59dbb215c327d910c1a285eff","","reply"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"]]}] +[10:58:48.081] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This is the way 🤙ðŸ¼","created_at":1759417127,"id":"0272a7c62145257df1641b03caa6faa89e72bbec55dc518f05daab3fd16d660c","kind":1,"pubkey":"08b328b57a07e86108d7afd05ca1445ac6aa0a095d6154cb2f4347bdeabbdb99","sig":"885243ad5dcb4dd9237fc827afdd39222ed9076af6fc60b48863bc66dc605b7a500fdd927a16b3c1e17c065252771057c00d88c9f3c38b6bfa10995a6e9475c7","tags":[["e","c9bf283dcc5544fdd29ef229438957a8d6592a6cf16b8c650e9e68d5a63ca0d8","","root"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630","","mention"]]}] +[10:58:49.137] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Microsoft 365 Personal e Family recebem mais poder de IA com novos limites no Copilot https://tugatech.com.pt/t72207-microsoft-365-personal-e-family-recebem-mais-poder-de-ia-com-novos-limites-no-copilot","created_at":1759417127,"id":"c64018e82b233ad808743624ee0a14de4140598d124fd08c5522d9d182063efa","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"55245ef151765577de87d307e63e637a3a340c542d83ec645a3e5f924c5900aafa1a56132409b7f78fb1c6f108cfe109e6604e123c20f49fafd24ab7a7a9aee2","tags":[]}] +[10:58:51.189] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:58:51.491] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Where does the name GTFO Handbook come from?\n\nEvery business needs a tagline, and for my business Sovereign Landing, the tagline is \"Go Lightfooted\". When my friend Rasbelin heard it, he quipped that a better tagline for a business like this would be just \"GTFO\". \n\nThat thought stayed with me, and I put that idea into practice with the name of this book.\n\n https://blossom.primal.net/c4f93ae7db946ba06f033e105e8354473cec5813789dfad1caab6779551e1d98.png \n\nIf you live in your country of origin, chances are that you are heavily exploited by people who seem to think they somehow own you, and that the fruits of your labor belong primarily to them.\n\nYou do the work, and they enjoy the benefits - in the name of fairness!\n\nIf you make the mistake of pointing out that it's all getting rather unfair, they're quick to tell you to learn your place, to STFU and to GTFO.\n\nThe GTFO Handbook is about giving them exactly what they want (or to be more precise: what they ask for).\n\nThere really is no need to fight any of them!\n\nOne of the best things about location independence is the ease of dealing with this leftard NPC crowd, especially their retarded comeback to any criticism of their ever-crazier policies of exploitation and violent coercion:\n\n https://blossom.primal.net/313c281d9fa6ec4116bc1bd61264ecf46245f36740b9c5a9b3a3249da0abef20.png \n\nWhen you live in a country where people like this are in power, you feel you have to spend endless amounts of energy in trying to convince them to \"come back to their senses\".\n\nI see so many people trying to desperately figure out ways to somehow convince the violent expropriators that their socialist dreams are killing the country, and if they continue exploiting the productive people, the country will go to hell.\n\nThey cannot be convinced, because they actually WANT all of the destruction that is now happening. Their idea of building a better world requires first destroying the old, and they are getting exactly that.\n\nYou don't have to stay stuck in those endless, desperate political fights (that you will never win!).\n\nWhen they tell you to GTFO, you can just give them a simple reply:\n\n https://blossom.primal.net/9fe9ac6bdaa5448727b3ba90956133777279188f225595eb54f331f61d552f35.png \n\nAt first, you'd think that the violent expropriators might react like this:\n\n https://blossom.primal.net/de0313d0fb3a515211208c875f637310e08f2a084faa66d372ee2a6e05885c4d.png \n\nIn my experience, the truth is much worse: they're simply happy with the thought of you leaving!\n\nThat \"processing\" part never seems to happen, and their \"if you don't like it\" noise is just an automated knee-jerk reaction to their world view being challenged: there's no actual thought behind it.\n\nThey aren't really bothered by productive people moving away, because the combination of the fiat money printer and the democratic \"welfare\" state DOES provide them with the real option of living endlessly on debt (until it doesn't, but the NPC is unable to think that far).\n\nFrom their point of view, you moving abroad just works: these annoying ideas challenging their socialist paradise just go away.\n\nTheir problem is solved, so why be angry?\n\nFor those with even half of a functioning brain, the conclusion from this is obvious: this can't end well… \n\nI discuss what all of this means in my book, especially part 5 (how and why to ignore politics):\n\nhttps://www.sovereignlanding.com/GTFO-Handbook/","created_at":1759417130,"id":"84a2d2c98823a11e1c4c6d53a8d2c0ee44aa7adb7b77548eaf806dfe8dfac6f7","kind":1,"pubkey":"50f4003e70fcb08e8f280711ccc6d30f4a564783d0146627d6f418cb7b5ec280","sig":"58a69827b7fc87807a85fd449a92ac46d69d13dd05f3e7ffbeb3805bb7bf22a1993e92373e3e6975b0d0e4c1fc6855f253ec5863c02b8bd13f11ee6b5f1e9394","tags":[["r","wss://feeds.nostr.band/ru"],["r","wss://feeds.nostr.band/tony"],["r","wss://feeds.nostr.band/typescript"],["r","wss://feeds.nostr.band/video"],["r","wss://nos.lol/"],["r","wss://nostr.wine/","read"],["r","wss://nostrelites.org/"],["r","wss://premium.primal.net/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.snort.social/"],["r","wss://wot.nostr.party/"],["r","wss://wot.sovbit.host/"],["r","wss://wot.sudocarlos.com/"],["r","wss://eden.nostr.land/","read"]]}] +[10:58:51.552] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Microsoft 365 Personal e Family recebem mais poder de IA com novos limites no Copilot https://tugatech.com.pt/t72207-microsoft-365-personal-e-family-recebem-mais-poder-de-ia-com-novos-limites-no-copilot","created_at":1759417127,"id":"c64018e82b233ad808743624ee0a14de4140598d124fd08c5522d9d182063efa","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"55245ef151765577de87d307e63e637a3a340c542d83ec645a3e5f924c5900aafa1a56132409b7f78fb1c6f108cfe109e6604e123c20f49fafd24ab7a7a9aee2","tags":[]}] +[10:58:51.612] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This is the way 🤙ðŸ¼","created_at":1759417127,"id":"0272a7c62145257df1641b03caa6faa89e72bbec55dc518f05daab3fd16d660c","kind":1,"pubkey":"08b328b57a07e86108d7afd05ca1445ac6aa0a095d6154cb2f4347bdeabbdb99","sig":"885243ad5dcb4dd9237fc827afdd39222ed9076af6fc60b48863bc66dc605b7a500fdd927a16b3c1e17c065252771057c00d88c9f3c38b6bfa10995a6e9475c7","tags":[["e","c9bf283dcc5544fdd29ef229438957a8d6592a6cf16b8c650e9e68d5a63ca0d8","","root"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630","","mention"]]}] +[10:58:51.673] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The blockchain is a glorified ledger. Its literally just double entry accounting but transparent and decentralized.\n\nBitcoin exists because fiat money (usd, euro, etc) is a sinking ship and can be manipulated by governments at will. They can print more (create inflation) or raise and lower interest rates at will. They can shut down access to all your money at the touch of a button and they can prevent you from spending your money if they don't like what you're buying. It \"enslaves\" people because we are beholden to something they unilaterally control.\n\nBitcoin is the escape. It is an alternative monetary system with safeguards no other crypto can claim. One of which:\n\nAll other coins can be minted or rugged by the owner, no different than US dollars. Bitcoin has no owner.\n\nBitcoin mining (the process if \"proof of work\" specifically) ensures that there is a cost to generating coins and to process transactions. This prevents bad actors because they have to spend heavily to attack.\n\nNodes offer consensus and validate blockchain entries. No one person can go in and alter records or roll back the blockchain (like coughETHcough). Bitcoin is Immutable.\n\nMany coins will claim these things but if you have a person or team that controls the keys to the kingdom, none of that matters. Does your coin have a CEO or President? If so, its no better than digital dollars at best.\n\nBitcoin stands alone.","created_at":1759417127,"id":"3609c41f7436937d4d390e4b73f685d17a9f0217696564fbee5331d9a44c92e3","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"cc3bcba186a935982962d653c109738a2bcaa15175156e659cf74444ee49b1bd499f88850fd4817954e9b4d6612f6ff0946f7622bd380f82c6ee107fc2df5834","tags":[["e","9ae53fea751fc1007b611940cea0e9efb8a18bbb16f2b611b18772e9d9cac237","","root"],["e","173830e56b52af63b70325993eab644dd866e162c0d7cb9c338f4c2e91e26a57"],["e","f4ec5857f18a0543c6be3a924532a54e02a954f59dbb215c327d910c1a285eff","","reply"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"]]}] +[10:58:51.734] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"LFG âœï¸\n\n🔥\n\n#devste","created_at":1759417126,"id":"144f4ecb1e517e74bc9f7b7a836232508e411e7a9941130cf50dc65785fbfb18","kind":1,"pubkey":"17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","sig":"e595cb0c143828251897a7b8f7ad025a7b27b90c99c92740a75196a83ece0a728aabd397329c5799a846a2a363057380d6cbfc0ff15bee755474830cfaf25670","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://nostr.wine/","root"],["e","bd26c513bfe7ed7696964b4e310b2018143814d20c939a11fb902db883639327","wss://no.str.cr","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["t","devste"]]}] +[10:58:51.794] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Believe in yourself and have a fantastic day, my fren! \nhttps://images2.imgbox.com/45/fe/Kn6keqrs_o.jpg \n#ToshiPeaches","created_at":1759417125,"id":"a679378095076808ae972350579df0258a7a90e1aa30df40ef01472ca4e9fbb0","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"05b34e968aa24e655be2b54708f28f251e182bd9800ff6ac624566bf24c0af07bdefca3f3086d278713ff7f6c43a6724d2d8f9510070910e3464e7e87538274a","tags":[]}] +[10:58:51.854] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub13pphdgv0qmt93fa0u8zzqmlnpk6fpspcl77dhff8s0820ath3x6sf4fflu ","created_at":1759417120,"id":"88f8f54848294fb5cf4c2fe70236b01947211a045b53d0fb35da1ef58c6cbf3f","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"e782a91aa6d96b03c4a9316088f83d8a5b05edc36f47225fb2f844b99c47af1d3db48c4bd1e5502c26b80d3191c0316c5e99b0dc25b81f732eec367ed33d7e79","tags":[["e","5bc4e3bf10e12aed8a4f271332ef4158fcf6796e5a6973ffd573a4f9760e04e8","wss://relay.primal.net","root"],["p","082b4d8908d40cab7235bcf82f91c3727ee39eb475a3e8f6d4a103648141e1d9","","mention"],["p","884376a18f06d658a7afe1c4206ff30db490c038ffbcdba52783cea7f57789b5","","mention"]]}] +[10:58:51.915] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"æ­¤åˆ»æ­£å¼æ”¾å‡ï¼ https://image.nostr.build/523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46.jpg","created_at":1759417114,"id":"1c1b22deafe16414ba720a8a44122f1c11e7c5938fe6e4828709b766b434a934","kind":1,"pubkey":"0d4e54ac92f66e90aac8ad45dc17ffbe2e1e2a14e834d923c5c4605c23709874","sig":"db06fea98a2b9b64270c1a4c69b3e496d98733b706ed8783e03a61f714c90a57e9d9c1ca17b0cfc8cb010eeb0b11df42177ffa57a6048a49873e0c7184b5fdb7","tags":[["r","https://image.nostr.build/523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46.jpg"],["imeta","url https://image.nostr.build/523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46.jpg","m image/jpeg","alt Verifiable file url","x 9de40bbc8552e42f4673a79d12a06550b1f765801be97e3668ef6e31f7deba71","size 93033","dim 1156x868","blurhash #5B:BCJ$rDpv+uk;M{S1V]4q9bIVMzJ7%1s:kCbFR|~AKfz;TInOSieUNaby9yRko}wgELk8jEso+@XO+uTIkCNG$*O?sAIvxHTJrrk8t7NawdXSK5VaJ.s;jFxaI:#,oz","ox 523cdacfa1ad18da3b8646856367035bca35daf34e35394d9a01b2f5172c7a46"]]}] +[10:58:51.975] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm Nostr \nhttps://blossom.primal.net/b2753c66a897df3804facab44ce52f09323e4854c4c6d30e420b87c5a4bb4771.jpg","created_at":1759417114,"id":"e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"1fa9693d60ee228622bf7363880b5bb5725142769730d7aa94cacdca3da42df56f5bb3b9a6bef79e27b9e9773185214ca6c79a3bb91e7791384f22049c269336","tags":[]}] +[10:58:52.036] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"First they took our satisfying hang ups, then they took our keyboard, and then they took our home button","created_at":1759417110,"id":"692b8fd1c6257a06c09c86cd921fe6465721a6842572241e62320045f28a0b5f","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"09c5fba5cf25113525429e9464fd3fabd20696ba7adb771d2f924895d47cf274d095667055a2eec067afcd60a2ef804b04123fb709473c2ba9c06bf90bb58d35","tags":[["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[10:58:52.096] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:58:52.821] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"a one time mistake and a final one.","created_at":1759417132,"id":"bb2171475eec6e52adc181dcd97c9953dd212a31b276b812127d65244355524b","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"bf5f4d5bf296356e916a87b8431ba0813e1c0bc7b691e729462e782badf7082a36865576c9417dfea09680a6c812bacb9639d98990e6b503ebaa2bb78692d328","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"]]}] +[10:58:52.992] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I’ve shipped a couple things there and it was fine ","created_at":1759417132,"id":"c41963b0984aaba57e37f14744d10680bd8eedd4a0ef5e765f4fe538bd4f64b8","kind":1,"pubkey":"805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3","sig":"43a871fed580fe3f63c888e500375bed51809b89d55d5636f3666261fcc27f7994a760c574a3c2eaf98e626813cb9ea73381a384f8f363194daa6442d7d4eebc","tags":[["e","2b554b3fb7dce131c4aa39d238f5bc074a6493a779986858f9f5c1c8ea8d2893","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["p","604e96e099936a104883958b040b47672e0f048c98ac793f37ffe4c720279eb2","","mention"]]}] +[10:58:53.495] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hopefully it shares ok cause it's a truly beautiful song:\nhttps://www.3five.app/video/743584284148190","created_at":1759417133,"id":"4cc40d8a7d24ba9ac3d8c824df0498439351e53f30e1eac3acd5af216a5d340e","kind":1,"pubkey":"7df42aa73a08b5d684c578607de2650ea746e1aa22acf6fe74ceafbe86df934e","sig":"5ee697ded23a1ca77691ecdc1ba208e4898af53a2cf4438d27fccd8fc113e6b45497c1e7d1a5badef1323b84134e8d4f5d207c7860586f519d824e8eede41bd7","tags":[]}] +[10:58:55.215] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM 🫂☕","created_at":1759417136,"id":"e8671eab60916be1b6030d93f49e84a78d78688d17252e2acb302450150e46c5","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"68f004710f58f29b52b20c05fae2ed5f95e33eb7abddf88ec33c786d79c8917742105e3a75e4ecb2f0c7a83239e1949fe4a195f5732a6edb507268e5bd730540","tags":[["alt","A short note: GM 🫂☕"],["e","e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","wss://relay.damus.io/","root","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","wss://nostrelites.org/"]]}] +[10:58:56.208] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Glorious, wasn't it?","created_at":1759417134,"id":"5c29e300c3fd7685782eacc8cff1f1b398b5e25c97ff1821b558e437d04bd9f6","kind":1,"pubkey":"c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86","sig":"6ffd156d4fd616ffe47f9ff0db8df8620fcd6035815c61c6e3282d4f4ca9a6e16274bb45af2684913fc8b0c11fdab3e6d221c264de4c82d6ccce865867db4d66","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://Bevo.nostr1.com","root"],["e","9e54c76c0fb988e5343f64eb339a0f4e990dc34cc9be348e3abbb40d5afdb140","wss://Bevo.nostr1.com","reply"],["p","c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","wss://relay.bitcoinpark.com/"],["r","wss://relay.shawnyeager.com/chat"],["r","wss://relay.shawnyeager.com/inbox"],["r","wss://relay.shawnyeager.com/outbox"],["r","wss://relay.shawnyeager.com/private"],["r","wss://wot.nostr.party/"],["r","wss://relay.primal.net/"]]}] +[10:58:58.704] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Kkkkkk o cara meteu essa \nnostr:nevent1qqspqpcqny0fp6katghw3f97akglazgvmenkwlma3racvn2lzgz27qspr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqwkjkxw","created_at":1759417138,"id":"ca521b3f73efd4bd15324c17536a245d49bfdfdef3adfa8c4c256410bfe01017","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"618e515b3320f7de175e1847a7f0c28932252e78736994e0e2fe14f4aede61a26ed70f8bce76dc6812135992a3cb7c58e2d9c72ebebdf6a404ddef3d212acea3","tags":[["e","100700991e90eadd5a2ee8a4beed91fe890cde67677f7d88fb864d5f1204af02","wss://nostr.bitcoiner.social","mention"],["p","38abc08e19dc1355e0cd9a70702b30b4748a0ff90075b7173dfae6ab6d8709a5","","mention"]]}] +[10:59:02.366] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM 🌻 have a good one 🧡","created_at":1759417141,"id":"1c66808d489df52c3cc469fc32125cf0dbae058da969905b478bcd09c6ae1b7c","kind":1,"pubkey":"0f389bba53857d557402a4d87cf8396c0467ebc7df199298dcc9e0d29b3f148f","sig":"3b8d65b1c55aa1583780732298855ab4bb3d0abf19771621559920e76e63829b3bea2751a3511875c769caba2f11c02f245c8a8fbb9d3a9ff1a7a445ec9e9022","tags":[["alt","A short note: GM 🌻 have a good one 🧡"],["e","c0e17dfac9e65773f3b7457c1326dd71647cd87b0ad14f680dc03c63b036c4dd","wss://gleasonator.dev/relay","root","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5"],["p","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5","wss://purplepag.es/"]]}] +[10:59:04.531] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I feel like some eBay stores take the power cables from computers they are selling, and just open up another store selling those power cables. ","created_at":1759417144,"id":"ac11618f848d9380548a9c249ed63b436e9fc0302897dbc0f5f49c59bd6a2a01","kind":1,"pubkey":"b22fef18cbf5eeb5d79451ef9c4cda28efd47fa794a2bc7d04495ccb1bba6e1f","sig":"3ccaef00bd4c6f1a13e8eec113ba92572fcec0cc85fa378cd2e82e8148aa65803ca00b7cabe52c866ebbf2dc01aee031025c7fbe66bce71e780d44df13400bf1","tags":[["alt","A short note: I feel like some eBay stores take the power cables..."]]}] +[10:59:09.494] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yeah, and THC processes in your liver much differently than it does from getting smoked, and it actually makes it way more psychoactive, which is why some people can't even handle edibles. 😅\n\nIt can be a vicious cycle eat an edible, get stoned, see a tasty snack, eat more, forget that was an edible, get even more stoned, get even more hungry.","created_at":1759417149,"id":"93bd8d8b5873d8d38682f1d5e1e1e3532d0846495dae38efa5ecb99d29c346c5","kind":1,"pubkey":"44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","sig":"f6466aa8a47baaa7f415157e4a51953857329649f7ff3bab396fe6a3cbc3f57c87f9280714a50da030a0f1c9bb5ec3e98c8a627efaaf9c3754b60400e8448bc2","tags":[["alt","A short note: Yeah, and THC processes in your liver much differe..."],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://wot.sovbit.host/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["e","7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","wss://theforest.nostr1.com/","reply","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"]]}] +[10:59:12.199] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:59:12.310] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:59:12.913] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"i dont associate with people who would do that to me.","created_at":1759417152,"id":"7f5521d215d849010bef256e40464281c1b6081f863a6549019f9cc0cce10c1f","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"4e22b4c8c17573d7909914e541e9b0ded7ee15ee117f5b05b84f1c0eaf107e0b66e07d15db5b729e89be44a90a9c45119f57f519334a58ad23670bd851cfe5a1","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","bb2171475eec6e52adc181dcd97c9953dd212a31b276b812127d65244355524b","","reply"]]}] +[10:59:18.731] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759417157,"id":"97438821a3ac9665f38a8e4d6a5edc792188f59b8038650f0b10e25272b894e7","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"8c963ab837104e614f789f3ea4cc0836bb2a7c95fc99b3c8b239ed2917d9bcefd516ae3ff00c8e6fc8e9db861c304d1359688c05f383b658dd123d4cedd8a8b0","tags":[["e","542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","wss://nostr-pub.wellorder.net","root"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","","mention"]]}] +[10:59:19.124] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"那月ã•ã‚“ã®å‹•ç”»ãŒé¢ç™½ã„ã®ã¯å½±ã§ç›¸å½“ãªåŠªåŠ›ã‚’ã—ã¦ã„ã‚‹ã«é•ã„ãªã„","created_at":1759417158,"id":"c643fc809be3bab4680fb1974d4aa88efc59b6f58e06e6734a660d1c356e15b4","kind":1,"pubkey":"1066a05d1474e7e133a97208a5cb177a9c01e4b81f0f14370ad59f4a0a475681","sig":"fbb6162dd1e1146022728d12071e080d0cf6e5b79d7539b3ea5c211cc23da7d5eaa19a48d8669082e83d7bab0b463ae86e4936f0e81869b575c207bc902f24cd","tags":[["alt","A short note: 那月ã•ã‚“ã®å‹•ç”»ãŒé¢ç™½ã„ã®ã¯å½±ã§ç›¸å½“ãªåŠªåŠ›ã‚’ã—ã¦ã„ã‚‹ã«é•ã„ãªã„"]]}] +[10:59:20.326] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"è¤è‰²å¨˜ã¾ã¿ã‚Œã®æ¬¡ã¯è¾²å®¶ã®ãŠã˜ã•ã‚“ã¾ã¿ã‚Œã«ãªã£ã¦ã—ã¾ã£ãŸ","created_at":1759417159,"id":"85010ab0e7f4c903bf0bcc7029539c94963059f6c29e3ca50247828bbb9d88e2","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"18448b5e3b3f22b753c914fbbc5b719693ee8e43b50d5392b03a1b8091310c58cb28bc8462ab73af5ac22c290dd7084039a9d41c4a5575d960a5c1f5afa763fc","tags":[]}] +[10:59:20.386] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Agree, more people need to be made aware of their complacency. It's very solid content. ","created_at":1759417159,"id":"fc07b76505ce76e0b44fef273e49825d3c08679483ebfb1ab865cd8325b759c6","kind":1,"pubkey":"07011cf08e51316703db24beac6d548bb134f8b3b415a34cdd076c223c8ad03b","sig":"a5b592272b23e55fd52e76e975d9931e648b973ac421722d1b038213c25edca36d8417e4179ea11c0bf1ec361ad164d86259e5f93824ff8869fa20f2b5a5ecd4","tags":[["e","aa3b22bb119d95d4c6d71bdc8de7f40e0ec7c558393319d837b938328fcebebc","wss://relay.mostr.pub","root"],["p","3b7fc823611f1aeaea63ee3bf69b25b8aa16ec6e81d1afc39026808fe194354f","","mention"],["p","f6900e6b42a83a6d66589714de49ac86919c6464857d9e164b953bcf9c7e939d","","mention"]]}] +[10:59:21.222] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:59:21.585] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Agree, more people need to be made aware of their complacency. It's very solid content. ","created_at":1759417159,"id":"fc07b76505ce76e0b44fef273e49825d3c08679483ebfb1ab865cd8325b759c6","kind":1,"pubkey":"07011cf08e51316703db24beac6d548bb134f8b3b415a34cdd076c223c8ad03b","sig":"a5b592272b23e55fd52e76e975d9931e648b973ac421722d1b038213c25edca36d8417e4179ea11c0bf1ec361ad164d86259e5f93824ff8869fa20f2b5a5ecd4","tags":[["e","aa3b22bb119d95d4c6d71bdc8de7f40e0ec7c558393319d837b938328fcebebc","wss://relay.mostr.pub","root"],["p","3b7fc823611f1aeaea63ee3bf69b25b8aa16ec6e81d1afc39026808fe194354f","","mention"],["p","f6900e6b42a83a6d66589714de49ac86919c6464857d9e164b953bcf9c7e939d","","mention"]]}] +[10:59:21.646] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"è¤è‰²å¨˜ã¾ã¿ã‚Œã®æ¬¡ã¯è¾²å®¶ã®ãŠã˜ã•ã‚“ã¾ã¿ã‚Œã«ãªã£ã¦ã—ã¾ã£ãŸ","created_at":1759417159,"id":"85010ab0e7f4c903bf0bcc7029539c94963059f6c29e3ca50247828bbb9d88e2","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"18448b5e3b3f22b753c914fbbc5b719693ee8e43b50d5392b03a1b8091310c58cb28bc8462ab73af5ac22c290dd7084039a9d41c4a5575d960a5c1f5afa763fc","tags":[]}] +[10:59:21.706] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"那月ã•ã‚“ã®å‹•ç”»ãŒé¢ç™½ã„ã®ã¯å½±ã§ç›¸å½“ãªåŠªåŠ›ã‚’ã—ã¦ã„ã‚‹ã«é•ã„ãªã„","created_at":1759417158,"id":"c643fc809be3bab4680fb1974d4aa88efc59b6f58e06e6734a660d1c356e15b4","kind":1,"pubkey":"1066a05d1474e7e133a97208a5cb177a9c01e4b81f0f14370ad59f4a0a475681","sig":"fbb6162dd1e1146022728d12071e080d0cf6e5b79d7539b3ea5c211cc23da7d5eaa19a48d8669082e83d7bab0b463ae86e4936f0e81869b575c207bc902f24cd","tags":[["alt","A short note: 那月ã•ã‚“ã®å‹•ç”»ãŒé¢ç™½ã„ã®ã¯å½±ã§ç›¸å½“ãªåŠªåŠ›ã‚’ã—ã¦ã„ã‚‹ã«é•ã„ãªã„"]]}] +[10:59:21.767] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759417157,"id":"97438821a3ac9665f38a8e4d6a5edc792188f59b8038650f0b10e25272b894e7","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"8c963ab837104e614f789f3ea4cc0836bb2a7c95fc99b3c8b239ed2917d9bcefd516ae3ff00c8e6fc8e9db861c304d1359688c05f383b658dd123d4cedd8a8b0","tags":[["e","542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","wss://nostr-pub.wellorder.net","root"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","","mention"]]}] +[10:59:21.827] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"i dont associate with people who would do that to me.","created_at":1759417152,"id":"7f5521d215d849010bef256e40464281c1b6081f863a6549019f9cc0cce10c1f","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"4e22b4c8c17573d7909914e541e9b0ded7ee15ee117f5b05b84f1c0eaf107e0b66e07d15db5b729e89be44a90a9c45119f57f519334a58ad23670bd851cfe5a1","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","bb2171475eec6e52adc181dcd97c9953dd212a31b276b812127d65244355524b","","reply"]]}] +[10:59:21.888] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yeah, and THC processes in your liver much differently than it does from getting smoked, and it actually makes it way more psychoactive, which is why some people can't even handle edibles. 😅\n\nIt can be a vicious cycle eat an edible, get stoned, see a tasty snack, eat more, forget that was an edible, get even more stoned, get even more hungry.","created_at":1759417149,"id":"93bd8d8b5873d8d38682f1d5e1e1e3532d0846495dae38efa5ecb99d29c346c5","kind":1,"pubkey":"44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","sig":"f6466aa8a47baaa7f415157e4a51953857329649f7ff3bab396fe6a3cbc3f57c87f9280714a50da030a0f1c9bb5ec3e98c8a627efaaf9c3754b60400e8448bc2","tags":[["alt","A short note: Yeah, and THC processes in your liver much differe..."],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://wot.sovbit.host/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["e","7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","wss://theforest.nostr1.com/","reply","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"]]}] +[10:59:21.948] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I feel like some eBay stores take the power cables from computers they are selling, and just open up another store selling those power cables. ","created_at":1759417144,"id":"ac11618f848d9380548a9c249ed63b436e9fc0302897dbc0f5f49c59bd6a2a01","kind":1,"pubkey":"b22fef18cbf5eeb5d79451ef9c4cda28efd47fa794a2bc7d04495ccb1bba6e1f","sig":"3ccaef00bd4c6f1a13e8eec113ba92572fcec0cc85fa378cd2e82e8148aa65803ca00b7cabe52c866ebbf2dc01aee031025c7fbe66bce71e780d44df13400bf1","tags":[["alt","A short note: I feel like some eBay stores take the power cables..."]]}] +[10:59:22.009] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM 🌻 have a good one 🧡","created_at":1759417141,"id":"1c66808d489df52c3cc469fc32125cf0dbae058da969905b478bcd09c6ae1b7c","kind":1,"pubkey":"0f389bba53857d557402a4d87cf8396c0467ebc7df199298dcc9e0d29b3f148f","sig":"3b8d65b1c55aa1583780732298855ab4bb3d0abf19771621559920e76e63829b3bea2751a3511875c769caba2f11c02f245c8a8fbb9d3a9ff1a7a445ec9e9022","tags":[["alt","A short note: GM 🌻 have a good one 🧡"],["e","c0e17dfac9e65773f3b7457c1326dd71647cd87b0ad14f680dc03c63b036c4dd","wss://gleasonator.dev/relay","root","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5"],["p","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5","wss://purplepag.es/"]]}] +[10:59:22.070] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Kkkkkk o cara meteu essa \nnostr:nevent1qqspqpcqny0fp6katghw3f97akglazgvmenkwlma3racvn2lzgz27qspr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqwkjkxw","created_at":1759417138,"id":"ca521b3f73efd4bd15324c17536a245d49bfdfdef3adfa8c4c256410bfe01017","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"618e515b3320f7de175e1847a7f0c28932252e78736994e0e2fe14f4aede61a26ed70f8bce76dc6812135992a3cb7c58e2d9c72ebebdf6a404ddef3d212acea3","tags":[["e","100700991e90eadd5a2ee8a4beed91fe890cde67677f7d88fb864d5f1204af02","wss://nostr.bitcoiner.social","mention"],["p","38abc08e19dc1355e0cd9a70702b30b4748a0ff90075b7173dfae6ab6d8709a5","","mention"]]}] +[10:59:22.130] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM 🫂☕","created_at":1759417136,"id":"e8671eab60916be1b6030d93f49e84a78d78688d17252e2acb302450150e46c5","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"68f004710f58f29b52b20c05fae2ed5f95e33eb7abddf88ec33c786d79c8917742105e3a75e4ecb2f0c7a83239e1949fe4a195f5732a6edb507268e5bd730540","tags":[["alt","A short note: GM 🫂☕"],["e","e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","wss://relay.damus.io/","root","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","wss://nostrelites.org/"]]}] +[10:59:22.191] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:59:23.031] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"23:59 iphoneã®0時ã®ã‚¢ãƒ©ãƒ¼ãƒ â°","created_at":1759417162,"id":"951b89b4f8c11f37994ba8ecbe67b4a5a8b9c176223111ff6509d6d6377f8d19","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"d2a13d0f1a4b024f7b4d48e47733a45798da7cea1f912664b3b67ff9099d35c47af929b2d480d796a12330749e1cb13a1e649894ae8a1fdefd04f921c57b06bf","tags":[]}] +[10:59:25.418] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Fourth Turning is The Great Noticing. Information spreads too rapidly to be stopped this time around. ","created_at":1759417164,"id":"fa358cec806381de9c3e6ae31e1c1b9c37e2206cf024c60bbf32fcba64c4b6f4","kind":1,"pubkey":"9bfcbdeee084f0c14810105a11b2759ac36d1eb6bc0f8356b9fcf093d0a7f620","sig":"81db7498084428546c2cfa46b20e7262b4373bb953129a9b2c7b7d9105083b2d01a530356b2a00489ac3a2f7caf01137e259b8590469d5f3f395bdfacef79897","tags":[["e","aaa602a8d88461758d5ab3b2f5a7047f46f3b60122b39d07f34eb991a9ee9e3a","wss://@nos.lol","root"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","","mention"]]}] +[10:59:29.352] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm!","created_at":1759417169,"id":"cd0947b91ed3996daf8cc9bcc55f3db8280809f7ea10e13d15b3c683bd5533d6","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"f4d671844111eb73f9a8fd0a437f4f12d57d49fa161d08335d05514c94ac96381f5fff9a4ffc770bb0df3f5d2a66387c65bccb42f20d4c2768f09a5f34f82121","tags":[["e","542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","wss://nostr-pub.wellorder.net","root"],["e","97438821a3ac9665f38a8e4d6a5edc792188f59b8038650f0b10e25272b894e7","","reply"],["p","96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d"]]}] +[10:59:32.794] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"disgusting manipulation from a disgusting shitcoiner","created_at":1759417162,"id":"7583c4310a68236e4aac101470ba31471402ebec82bcbfcc7e9c10083e8dbed1","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"cbd55044ec107667552fe1b00a52f822745b18a873aee9005cbd8aad2a5df15007095ff3452e94fd488d85b57a2d8826a34638fa8d6e25ee91a4166a04d2aed7","tags":[["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://relay.primal.net/","root","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","6f2f53e78f03d3a2b7d200acab810f2730a19d731a10e17e7b55ad43fb47c828","wss://relay.damus.io/","reply","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"]]}] +[10:59:35.068] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://www.youtube.com/watch?v=UlCr_D3pZ68&t=27","created_at":1759417171,"id":"cd384a7778a3506314dec34efa4421acc2fe6bd4d8c29c5e040d9775c183797c","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"1b68da6bb6afc0ff17a09e08100534ef258feef8e9b9053cbc193b8f6203b093c241873264240177052abf3e5ff7d1ba3668a80496f6dc0d76c28ca3c9f47231","tags":[["alt","A short note: https://www.youtube.com/watch?v=UlCr_D3pZ68&t=27"],["e","7883eff43b63953173fbfb41c664ff947f0eab0638201bfd2fbdde897b0e9aa3","wss://relay.primal.net/","root","1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642"],["p","1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642","wss://relay.damus.io/"],["r","https://www.youtube.com/watch?v=UlCr_D3pZ68&t=27"]]}] +[10:59:42.153] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:59:42.264] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[10:59:46.026] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:29 IST\n\nBlock Number: 917386\nFee Rate: ₹84\nTime to mine: 00:00","created_at":1759417182,"id":"b452af80387df0f97390521f613f202dc6fffecdcb750253211464a7d3d550ad","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"bed6fe4ae9c9fafb7b10ebf7e84303ebc10eceeaeb46e4f9bf128957ade073e16c521e990d6a8b008de44b767a2e031627dd5508dcf9111cc51dcb807c37fd65","tags":[]}] +[10:59:46.767] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917386\nWeight: 3993482\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931.png","created_at":1759417186,"id":"3a363dd0a169f739d3562a0d1fe8ba3826ee88d2f084c649d81b9414de0b35ff","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5d66e9b27cd38b25afba1f1743bbda127eaa07a5608e02eb75dea78b558899a63b390a145baa6076c0ae9a91810fe1a18d91e5f890e2d440d4528c38515eaa85","tags":[]}] +[10:59:47.206] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://www.jamstec.go.jp/j/about/press_release/20251001/","created_at":1759417186,"id":"8c06566489640483e142f8ffe44c43fc8deb5672cf254e1f2b6eae38e9799755","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"2fc239127cae171fd3da5392c9d56838b33cade65cfdae930faa22c5004edf14de5aea951ef880005af3f222e34224ae23f8836420055706f9cbf872206ec5ac","tags":[["r","https://www.jamstec.go.jp/j/about/press_release/20251001/"]]}] +[10:59:47.820] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Well, I wrote this a few days ago but yeah, not as big as Nick Szabo so, Understandable that mine was missed.\n \n\nnostr:nevent1qqswk5gj6l0y4fy4lv3ma80rj8vpcamcmvjuure7m3njncvktkrq73gpzemhxue69uhkummnw3ex2mrfw3jhxtn0wfnj7q3qm50e65pv09ga73lglrkjgh5tlgj006pv9rce8xdg7rn5kps38gssxpqqqqqqze6fw7z","created_at":1759417186,"id":"220b067fc4f6e9e39682a57c3ecf55628f1e70025a698e73e0d44d8e272d8c49","kind":1,"pubkey":"dd1f9d502c7951df47e8f8ed245e8bfa24f7e82c28f19399a8f0e74b06113a21","sig":"bd29e94937e9036178dca451659398bc4850c8a4c8215fd3dcaaecf21554aa815fbc3aeab626ba467b4707834610c68d1a4d504a52d443dd26547feb7a6688b2","tags":[["e","eb5112d7de4aa495fb23be9de391d81c7778db25ce0f3edc6729e1965d860f45","wss://relay.primal.net","mention","dd1f9d502c7951df47e8f8ed245e8bfa24f7e82c28f19399a8f0e74b06113a21"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["e","cdb5c67b7a4f9c9090befaf6c9e83aba96eaf9c86e2acf214ecb57f57724ca20","","root","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"]]}] +[10:59:48.213] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Renowned chimpanzee researcher Jane Goodall dies at 91\n\nJane Goodall, the conservationist and primatologist renowned for her groundbreaking research on chimpanzees, has died.\n\n\nhttps://www.aljazeera.com/video/newsfeed/2025/10/2/renowned-chimpanzee-researcher-jane-goodall-dies-at-91?traffic_source=rss","created_at":1759417187,"id":"22dbea6edbda0bbfaff2d1ee26780ef4db0c9ed8125ba689a3f43fb10ff6c32b","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"485185bd6e270292baeb65429df64858e05d3f75716b2552dd20ceea7c0b9aab8b40f576096de77ae8da545f3cb111c82f87fcd87d87eacf31006f1ac716d672","tags":[]}] +[10:59:48.776] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[10:59:51.211] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[10:59:51.363] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Renowned chimpanzee researcher Jane Goodall dies at 91\n\nJane Goodall, the conservationist and primatologist renowned for her groundbreaking research on chimpanzees, has died.\n\n\nhttps://www.aljazeera.com/video/newsfeed/2025/10/2/renowned-chimpanzee-researcher-jane-goodall-dies-at-91?traffic_source=rss","created_at":1759417187,"id":"22dbea6edbda0bbfaff2d1ee26780ef4db0c9ed8125ba689a3f43fb10ff6c32b","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"485185bd6e270292baeb65429df64858e05d3f75716b2552dd20ceea7c0b9aab8b40f576096de77ae8da545f3cb111c82f87fcd87d87eacf31006f1ac716d672","tags":[]}] +[10:59:51.424] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Well, I wrote this a few days ago but yeah, not as big as Nick Szabo so, Understandable that mine was missed.\n \n\nnostr:nevent1qqswk5gj6l0y4fy4lv3ma80rj8vpcamcmvjuure7m3njncvktkrq73gpzemhxue69uhkummnw3ex2mrfw3jhxtn0wfnj7q3qm50e65pv09ga73lglrkjgh5tlgj006pv9rce8xdg7rn5kps38gssxpqqqqqqze6fw7z","created_at":1759417186,"id":"220b067fc4f6e9e39682a57c3ecf55628f1e70025a698e73e0d44d8e272d8c49","kind":1,"pubkey":"dd1f9d502c7951df47e8f8ed245e8bfa24f7e82c28f19399a8f0e74b06113a21","sig":"bd29e94937e9036178dca451659398bc4850c8a4c8215fd3dcaaecf21554aa815fbc3aeab626ba467b4707834610c68d1a4d504a52d443dd26547feb7a6688b2","tags":[["e","eb5112d7de4aa495fb23be9de391d81c7778db25ce0f3edc6729e1965d860f45","wss://relay.primal.net","mention","dd1f9d502c7951df47e8f8ed245e8bfa24f7e82c28f19399a8f0e74b06113a21"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["e","cdb5c67b7a4f9c9090befaf6c9e83aba96eaf9c86e2acf214ecb57f57724ca20","","root","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"]]}] +[10:59:51.485] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://www.jamstec.go.jp/j/about/press_release/20251001/","created_at":1759417186,"id":"8c06566489640483e142f8ffe44c43fc8deb5672cf254e1f2b6eae38e9799755","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"2fc239127cae171fd3da5392c9d56838b33cade65cfdae930faa22c5004edf14de5aea951ef880005af3f222e34224ae23f8836420055706f9cbf872206ec5ac","tags":[["r","https://www.jamstec.go.jp/j/about/press_release/20251001/"]]}] +[10:59:51.545] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917386\nWeight: 3993482\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931.png","created_at":1759417186,"id":"3a363dd0a169f739d3562a0d1fe8ba3826ee88d2f084c649d81b9414de0b35ff","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5d66e9b27cd38b25afba1f1743bbda127eaa07a5608e02eb75dea78b558899a63b390a145baa6076c0ae9a91810fe1a18d91e5f890e2d440d4528c38515eaa85","tags":[]}] +[10:59:51.605] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:29 IST\n\nBlock Number: 917386\nFee Rate: ₹84\nTime to mine: 00:00","created_at":1759417182,"id":"b452af80387df0f97390521f613f202dc6fffecdcb750253211464a7d3d550ad","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"bed6fe4ae9c9fafb7b10ebf7e84303ebc10eceeaeb46e4f9bf128957ade073e16c521e990d6a8b008de44b767a2e031627dd5508dcf9111cc51dcb807c37fd65","tags":[]}] +[10:59:51.666] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://www.youtube.com/watch?v=UlCr_D3pZ68&t=27","created_at":1759417171,"id":"cd384a7778a3506314dec34efa4421acc2fe6bd4d8c29c5e040d9775c183797c","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"1b68da6bb6afc0ff17a09e08100534ef258feef8e9b9053cbc193b8f6203b093c241873264240177052abf3e5ff7d1ba3668a80496f6dc0d76c28ca3c9f47231","tags":[["alt","A short note: https://www.youtube.com/watch?v=UlCr_D3pZ68&t=27"],["e","7883eff43b63953173fbfb41c664ff947f0eab0638201bfd2fbdde897b0e9aa3","wss://relay.primal.net/","root","1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642"],["p","1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642","wss://relay.damus.io/"],["r","https://www.youtube.com/watch?v=UlCr_D3pZ68&t=27"]]}] +[10:59:51.726] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm!","created_at":1759417169,"id":"cd0947b91ed3996daf8cc9bcc55f3db8280809f7ea10e13d15b3c683bd5533d6","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"f4d671844111eb73f9a8fd0a437f4f12d57d49fa161d08335d05514c94ac96381f5fff9a4ffc770bb0df3f5d2a66387c65bccb42f20d4c2768f09a5f34f82121","tags":[["e","542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","wss://nostr-pub.wellorder.net","root"],["e","97438821a3ac9665f38a8e4d6a5edc792188f59b8038650f0b10e25272b894e7","","reply"],["p","96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d"]]}] +[10:59:51.787] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Fourth Turning is The Great Noticing. Information spreads too rapidly to be stopped this time around. ","created_at":1759417164,"id":"fa358cec806381de9c3e6ae31e1c1b9c37e2206cf024c60bbf32fcba64c4b6f4","kind":1,"pubkey":"9bfcbdeee084f0c14810105a11b2759ac36d1eb6bc0f8356b9fcf093d0a7f620","sig":"81db7498084428546c2cfa46b20e7262b4373bb953129a9b2c7b7d9105083b2d01a530356b2a00489ac3a2f7caf01137e259b8590469d5f3f395bdfacef79897","tags":[["e","aaa602a8d88461758d5ab3b2f5a7047f46f3b60122b39d07f34eb991a9ee9e3a","wss://@nos.lol","root"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","","mention"]]}] +[10:59:51.847] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"disgusting manipulation from a disgusting shitcoiner","created_at":1759417162,"id":"7583c4310a68236e4aac101470ba31471402ebec82bcbfcc7e9c10083e8dbed1","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"cbd55044ec107667552fe1b00a52f822745b18a873aee9005cbd8aad2a5df15007095ff3452e94fd488d85b57a2d8826a34638fa8d6e25ee91a4166a04d2aed7","tags":[["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://relay.primal.net/","root","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","6f2f53e78f03d3a2b7d200acab810f2730a19d731a10e17e7b55ad43fb47c828","wss://relay.damus.io/","reply","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"]]}] +[10:59:51.908] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"23:59 iphoneã®0時ã®ã‚¢ãƒ©ãƒ¼ãƒ â°","created_at":1759417162,"id":"951b89b4f8c11f37994ba8ecbe67b4a5a8b9c176223111ff6509d6d6377f8d19","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"d2a13d0f1a4b024f7b4d48e47733a45798da7cea1f912664b3b67ff9099d35c47af929b2d480d796a12330749e1cb13a1e649894ae8a1fdefd04f921c57b06bf","tags":[]}] +[10:59:51.968] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[10:59:52.029] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"UK gov’t demand to access Apple users’ data raises civil liberties issues\n\nhttps://www.aljazeera.com/news/2025/10/2/uk-govt-demand-to-access-apple-users-data-raises-civil-liberties-issues\n\nSource: [Al Jazeera](https://t.me/aljazeeraglobal/120843)","created_at":1759417191,"id":"43638b6a0f411f522189714bf9da5206817cffc00568fa6f0acc37e44efd4320","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"78c8cf598845f4b4151dabcd6dc22b9873a3741c4c5eb48a950af0ad5b5ec9ad8e2d1db7e6d34c3f4ca162f670b7ebefececacb543f1583e6c0cd84e9b3ab30c","tags":[]}] +[10:59:52.753] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Weaving Kibera's Economic Fabric, Thread by Bitcoin Thread. #SPEDN \nhttps://blossom.primal.net/22a86a61abb00eef20023549ecd90305ee51f2de85dbe793affd6b72b87f608e.mov","created_at":1759417191,"id":"d7a0ba40d2caf9a98365c478d843263e5d449b83b6149a214fe5e6f196a0cb28","kind":1,"pubkey":"6cac898d7523e97582dec184b9b00ec708d8af3d7c86619c45cea4678bb0bc2c","sig":"93382a2373ae84faa19551b4db7fd52016ece55ed507d32d3400aed94f22b2db62b624dba49a8722b57eb463a8db13467494d151198cccd0a4ad21e0debd8338","tags":[["t","SPEDN"]]}] +[10:59:53.742] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Will Europe use Russian assets to fund Ukraine? Could Moscow hit back?\n\nSome European countries have raised concerns about potential legal challenges to the 'reparations plan' for Ukraine.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/will-europe-use-russian-assets-to-fund-ukraine-could-moscow-hit-back?traffic_source=rss","created_at":1759417193,"id":"960e91004c45623dc2944fe39666d1b2bc2f90562b947ba6e117134418c7bcdb","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"5020bc5a5f8852f76e5a06223ca7f4d2552ce1970aaab80a6351abb19574d2b7af8138bd6fdcc0c1f8ecad662790b5563ced4cec3181ca83b7b886edde91f63c","tags":[]}] +[10:59:54.497] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759417193,"id":"f49f210f45d016a175b72048113f42bcb3fad990c511d49e160652d4621ed0bf","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"ad0ba73f14bafd5f2d027e1b85a3b158e3042acf7ebeeecad336125a227e16fd068f23dd768e5764c73bc645f6aee56c044547af55ccdea107a9c20b23bf759d","tags":[["e","5e4841da0609ec121af935706839102f6d7f77e1f1b142b6a18aa9ad610e8645","wss://nostr.mom","root"],["p","416335ae6302946042249279d96cae8a33337baae859b6f962618d3c9e520a63","","mention"]]}] +[10:59:55.002] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"They pulled of price hallucinations. Not a bug but a feature \n\n","created_at":1759417195,"id":"8498dccbcc87e66a17196ab35c8064ef5c105aadce2f65bba900e2182f1db8e8","kind":1,"pubkey":"aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253","sig":"504553481e01bab0f6a80a53773deb1521aa08f8529a52d97c22a40a0adc6a4179f406cd900e5b3e6e10312984b65c53f4d22c2143ef3eae25016c16dc79574a","tags":[["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],["p","b133bfc57bed61c391d4e8f953b906c7f1709c438d91c75fb6daf79449d5789d","wss://nostr-verified.wellorder.net"],["e","ffa34c826c18c0d5cea4d63bd5fa38ebac05a423dbfe3ec01088373f390715ff","wss://nostr-verified.wellorder.net","root","b133bfc57bed61c391d4e8f953b906c7f1709c438d91c75fb6daf79449d5789d"]]}] +[10:59:55.616] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/23eaa9ecc876f02a125482219e2d8b005e5953a906db9c172918fe62cafca7c4.jpg","created_at":1759417195,"id":"c0c6ad04059fc1fe2ff133f1c25ffac49843008de951e17e859eb70bf3047c9e","kind":1,"pubkey":"d74cc6bdd972923370a23e2b8f09eef86ed05cf075d45033a973de569adbb6b8","sig":"b974c24659db113feb64052622ff5e823d0a5587244230ed1a4603c7cdb09458757df302a71bd39213174203ff9e11cb3038de6cf80f172186a3d4677447813e","tags":[["e","6112acf37460b1fc24b65a83c5ffabdf8996b8806bc34171f0f7bb8ea1606dbf","wss://nostr.einundzwanzig.space","root"],["p","54609048284d2a151c8df625f40c389d423ed057fcef927db88956d28e22ba03","","mention"]]}] +[10:59:55.692] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🤣 \n\n","created_at":1759417195,"id":"0121266656637f723f1e1a8ee37066ec5d127007c37f19ac3599760ad869469c","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"56aec42c91afb829c5755f4f7821fda99b8d30db551fd746f6b3f464971500e126af969b36377b29ae8bdc6fa607ef1eb3da60d06d149b12885356004dd775de","tags":[["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.mom"],["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","wss://nostr.mom","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[10:59:56.638] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I don't understand how else to say this... I'll try again.\n\nAmethyst supports using your finger to highlight text from a web page and sharing that text and web page URL to Amethyst. The event that is shared is a kind:1 event and not a kind:9802 event. All Vitor needs to do is change the event kind and spec for this event. Alternatively he could just add a second Amethyst share intent for for this specific highlight kind. \n\nAmethyst and Android have the capability, but it's currently not being utilized. There should not be a dev headache like you said, because it's technically being done right now with a different event kind!","created_at":1759417197,"id":"4ede3b9185a2be5b2e6ed290e8c71f4cc10efd0670963aa14e4d0a0420b85db5","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"7cfc6d8c602351e6f6f2ff9a790ea6d67ab750fcd72a96eaa378a9aae1e39d032d22d323a0796480fed6f72123e43c46997059f90d739f04d09118cf088d582c","tags":[["alt","A short note: I don't understand how else to say this... I'll tr..."],["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["e","46d8cdc93cab7c6b5529e1aee6f628c8a4410d726b98048adb48a6f45a78f206","wss://nostrelites.org/","","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","7ce97888f9f1e110a6591e6c204d1479092af01aded2afd8bd7a15f6f0d000fc","wss://wons.calva.dev/","reply","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93","wss://nostr.wine/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://nos.lol/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c","wss://vitor.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","wss://no.str.cr/"]]}] +[11:00:00.357] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 10/3(金) ------------✄","created_at":1759417200,"id":"0a0e34ab4cc4e42786fe406f51d0028eab0f5ab06a1ac8ce6139bb150c941a55","kind":1,"pubkey":"c23d36fedcc7bd08485ecdfea7453fdbecfa4f464d5460540ae546c0d824bf65","sig":"f308316747612f04fb3d982333daa8dda6b4c36e7ee4a3f9ede3433ad1eb0d95962517111f8f7e28de9056e6693cbddce65e11008b8258d676239486e0868c3e","tags":[]}] +[11:00:00.417] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 10/3(金) ------------✄","created_at":1759417200,"id":"e4bc3f8346177ddb622a9d204b3c88d92364a1ef3322b24624fe5a3a60f7fa44","kind":1,"pubkey":"401d9cc33c48e3b2d57fe02b1b46c3823432e658603665d851a0c9e09e5f4abd","sig":"e65c392431828fa8ab4240e9cdf329ab4ce37a699ed79f7aa9986b5a070bebd8eea8ecc2347b5ab28e2e9877dafca618b2bbca94eca1bc8030d71cd0855306a6","tags":[]}] +[11:00:01.325] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🎥 Check out this from #trailers :\n\nhttps://www.youtube.com/watch?v=KJ6c5dgVip8\n📌 Title: NAZI SUPERSOLDIER Official Trailer (2025)","created_at":1759417200,"id":"b86f748cde1638f4b726f13a2e786698b12b00e5f4f41baaddb8990eef821ad0","kind":1,"pubkey":"7e5fe48dee12c80cb57403d7056c01c5def2c98eca52b3d5fd3db13fc88c79d0","sig":"da4fbf8a91d50164986ae699f3df39977e9d0d180670d7b54ac9717c29650c8322835c3ecc7e019a6a1b399700f005b4d127c833fbd7c0acc3e229f0946e0b6c","tags":[["t","trailers"]]}] +[11:00:02.824] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" ----------2025/10/03(金)----------","created_at":1759417201,"id":"f9a913468573da2d36a1aaa1dbad3663745767bc215c89b0d6559ae5278f91b2","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"95cee46d9001d0abd05173bea5ed9a773762630630a481a88e34ccee862af0811a72d2e23751c7c91305a2f0377cae04adbd523325a2c6488cb7ab5db1200a63","tags":[]}] +[11:00:03.365] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"📠MEMPOOL SNAPSHOT\nTime (UTC): 2025-10-02 15:00:00\nHeight: 917386\nTxs: 5807\nBacklog: ~0.5 blocks\nMempool RAM: 1.8/286 MB\nNode min feerate: 1.0 sat/vB\nSuggested fees: 1 blk 1.0 sat/vB | 3 blks 1.0 sat/vB | 6 blks 1.0 sat/vB\nFee pressure MED ▮▯▯▯▯▯▯▯▯▯▯▯\n\n#bitcoin #nostr\n\n🌠mempool.space/mempool","created_at":1759417200,"id":"00d4ac0f250fc0ad435c26e395463d4528e8a38965ce57d39318ee4f74674307","kind":1,"pubkey":"9e3004e9b0a3ae9ed3ae524529557f746ee4ff13e8cc36aee364b3233b548bb8","sig":"f4cba483003c44b6a6a21e2417726d8135876a336341e890b1c93dae9f1a50de2f56d3949b9a4dfa5e6d2427d56368abe7569384afed21076a516b55e15fc758","tags":[["t","bitcoin"],["t","nostr"]]}] +[11:00:03.758] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"fuck still fee race regular super purity critic rhythm hill sure marine venture ","created_at":1759417203,"id":"4f8d86f46fd62b1ddbd05fa1527f4c033decc44a82a083017fa0cce21a66ba63","kind":1,"pubkey":"93a7ef21ca5c71cafbd2afd31920d311ec10cafdf5995407cab0fbfb00c6a0ca","sig":"824b2e18409292d329c31ad78ca16eb0e8b3bedfe0f0e2643fd5bb18e0f34ee5af30a724df66925380248c663e0327e5343c440e5e1e9e69e40a3204093fab2c","tags":[]}] +[11:00:03.818] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Current BTC/USD price is: $118,890\nCurrent sats per USD: 841 sats","created_at":1759417203,"id":"7d87da46f8de1e5e6cd6e8dad05cfdffac73618c0b2008a9785fa47ac3f0eaa5","kind":1,"pubkey":"e5c55839b2cc6a12c002b15515be087e899dce1e4c1eeaf63ee0e0550f456bb5","sig":"284128654d9be601e156851926b3ecec9efae5537c515470301bbfd4b8ec95bdf6b0cb0d1bb20fa88d3813703b7739ec149c4acb9889d5246d4566cee1ac2644","tags":[]}] +[11:00:04.654] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"**NEO Warning**\n\nHold on to your telescopes, folks! We're about to witness a cosmic game of hide-and-seek as space rocks play peek-a-boo in the next 7 days. Connect to nostr, sharpen your cosmic vision, and try to spot the elusive celestial hiders. Hint: They're masters of blending in with the stars!\n#neo #AsteroidExplorations #CometTrails #AstroMiners\n\n🆔 **NEO ID** 54300842\n🪪 **Name** (2022 QG41)\n📠**Estimated Diameter** 241.0 meters\n🔆 **Magnitude** 21.96\n🚀 **Velocity** 43035.2 km/h\nðŸ—“ï¸ **Close Approach Date** 2025-Oct-03 16:41 UTC\n📠**Miss Distance** will be 42.1 times the distance from Earth 🌠to the 🌕 Moon which is approximately 16201986.7 kilometers\n🔗 **NASA JPL URL** https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html#/?sstr=54300842\n**This NEO is classified as potentially hazardous due to its close proximity to Earth and its size**\n\n\n🆔 **NEO ID** 54203006\n🪪 **Name** (2021 SZ4)\n📠**Estimated Diameter** 478.7 meters\n🔆 **Magnitude** 20.47\n🚀 **Velocity** 160284.9 km/h\nðŸ—“ï¸ **Close Approach Date** 2025-Oct-04 02:24 UTC\n📠**Miss Distance** will be 186.9 times the distance from Earth 🌠to the 🌕 Moon which is approximately 71892716.1 kilometers\n🔗 **NASA JPL URL** https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html#/?sstr=54203006\n**This NEO is classified as potentially hazardous due to its close proximity to Earth and its size**\n\n\n🆔 **NEO ID** 54016489\n🪪 **Name** (2020 GA2)\n📠**Estimated Diameter** 351.6 meters\n🔆 **Magnitude** 21.14\n🚀 **Velocity** 108132.0 km/h\nðŸ—“ï¸ **Close Approach Date** 2025-Oct-07 22:58 UTC\n📠**Miss Distance** will be 115.9 times the distance from Earth 🌠to the 🌕 Moon which is approximately 44561001.6 kilometers\n🔗 **NASA JPL URL** https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html#/?sstr=54016489\n**This NEO is classified as potentially hazardous due to its close proximity to Earth and its size**\n\n\n🆔 **NEO ID** 54131736\n🪪 **Name** (2021 ED5)\n📠**Estimated Diameter** 552.1 meters\n🔆 **Magnitude** 20.16\n🚀 **Velocity** 79853.5 km/h\nðŸ—“ï¸ **Close Approach Date** 2025-Oct-06 06:08 UTC\n📠**Miss Distance** will be 28.3 times the distance from Earth 🌠to the 🌕 Moon which is approximately 10897501.5 kilometers\n🔗 **NASA JPL URL** https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html#/?sstr=54131736\n**This NEO is classified as potentially hazardous due to its close proximity to Earth and its size**\n\n","created_at":1759417204,"id":"7d7c20b50092c31f93299c756319bac34e695a9900dee7712e6196b4cebb72ae","kind":1,"pubkey":"0000000054614b8dd0f26d500b1653f319b799b848fceef3014427c422b9127e","sig":"524df9dfde15357354431da76cc4bf382673b086ab1c229c48a6be1c4ab1f9107aee0bc9fd41fdcf50e3fb004072f2c572eb5d74d4fc4262b1ee9806ae685f81","tags":[]}] +[11:00:04.969] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"$118,814.09\n\n#Bitcoin #BTC $BTC $USD","created_at":1759417202,"id":"02243d2c6a5cfc19494bc0a316c4e9d3f468d53d6b727a4ed98de8f6f2c751a2","kind":1,"pubkey":"207ce683797dc96fb3abf9e796bee59a5635e0bd80f413f0f2e0f6de23f5b8bb","sig":"57da3fc49d3e2d33225ba2e43b1b3f15f7f8d686072c9d639780c6bb78732506cbb84e744bfade8fe7af63be5b50da21392df3d719c41fe6648c91a7799e5134","tags":[]}] +[11:00:05.141] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"NAVAL: Stablecoins are just CBDCs with extra steps\n\nby Scoresby in ~econ\n365 sats and 6 comments so far\n\nhttps://stacker.news/items/1245793","created_at":1759417204,"id":"a346eafd48462c2b7dd14a5a6d899a39bf0881175840ade517b12a004f4b41c0","kind":1,"pubkey":"9279276bffb83cee33946e564c3600a32840269a8206d01ddf40c6432baa0bcb","sig":"171d6a588498e569684d5375445898ad263a7760fd86d0fbb98f5fbbc4a34f2743120818e79400e1cf20108371c01242173b1db1940bf043f308361129fefbb4","tags":[["client","stacker.news"]]}] +[11:00:05.674] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Bitcoin has DECREASED in DOLLAR. The current price is $118,888.14, the pokémon #118 is Goldeen (Water) #bitcoin #pokemon #zap https://nostr.build/i/nostr.build_6eca22678c60cc1bc4ac94410ec6681ef09cc5dfd9367dc2f2b17e3f03ed9246.png","created_at":1759417201,"id":"6978fb9f3e1f9f09fe1066a8fcc8f98bcbd6e75467960a30befd1a238b655504","kind":1,"pubkey":"3c9b6600387f906a4c7b713ae9cf603b780d72a141cc6cd98e3700c06aeff970","sig":"6ef4917bda2087acaa46e333ae643df091a6d2a898d68420d135824a8a8bb0f899e15e2c910c06bed924b8d1a38d37c0104b7f5cd065354722cf6e3fd7fc6b87","tags":[["t","118"],["t","bitcoin"],["t","pokemon"],["t","zap"]]}] +[11:00:06.007] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"0x518FEC\nhttps://hitony.com/images/everycolor/518FEC.png","created_at":1759417205,"id":"223b0453bb7e904b4da58a8c0f4448a4eaecf38583eeab1cca766ebeb3bef432","kind":1,"pubkey":"d9e7f74e22452b48c23b7d1f2714d0d4c4aa638b5391524d3728f8747f6cfd2a","sig":"9725652ff513e0f9c47ef2ca46374ef2ae279ce333ffba59838b6ddf44fa6943e704f28542e25472aac720334dc9b39969b72e3105bd869f79288c6c1a3c09ad","tags":[]}] +[11:00:06.201] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã„ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹","created_at":1759417205,"id":"e6e221f3071455764a956c063f86a999bcd7903e1a9fdab6018bbb5946fbec17","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ff5b67c86a70ec38229bfb4db08cab19d7e523e5f4914bbc60f81a997dd7539dab1586cbdb419b2226ebd4d1341fa2fd4090b76b09d0b377672f064988ab598e","tags":[]}] +[11:00:07.195] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":":1x1_hiragana_15_o::1x1_hiragana_81_ya::1x1_hiragana_33_su::1x1_hiragana_72_mi::1x1_mark_nyoro:","created_at":1759417205,"id":"f57c3aad6b04cea3e2620c4c1156099941c5d4d71a580675ecf8cff8425de4e1","kind":1,"pubkey":"c08805f9bd4849049325747a8086a3c0e069adeb19d8f59ec4e6b5157b7d3416","sig":"f08b04dced938ed3a427857b1a82c7f2caec1e598524b9b63b412fe6c4f672ec5bc371781a723f4bf87d9e478e5c52a405edefded971959a090c0592ddcb13d1","tags":[["emoji","1x1_hiragana_15_o","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.15.o.webp"],["emoji","1x1_hiragana_81_ya","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.81.ya.webp"],["emoji","1x1_hiragana_33_su","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.33.su.webp"],["emoji","1x1_hiragana_72_mi","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.72.mi.webp"],["emoji","1x1_mark_nyoro","https://raw.githubusercontent.com/mitsugu/customemoji/main/mark/1.1.mark.nyoro.webp"]]}] +[11:00:07.256] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"1 #XMR = 281.720 #EUR\n1 #XMR = 330.050 #USD\n1 #XMR = 1767.365 #BRL\n1 #XMR = 0.002779 #BTC\n1 #XMR = 0.075419 #ETH\n1 #XMR = 0.563718 #BCH\n1 #XMR = 2.798039 #LTC","created_at":1759417202,"id":"e699fd154ac1121f3ea07cf19bd1f92bf07aa95fcdae38758b970217ac98c282","kind":1,"pubkey":"2ca5e6a7505c0ab25fd68c1f541506842c4199d64f01aa905810bed5bb0f8149","sig":"c6917eeda36a1731afa8ae6cb8028f6128138e9fcfb1aa0b9cbe9a9fd312e4cbf379f6bb146d0b61b651cea115b82b4182faa32315acf38b9353a29abf93e139","tags":[["t","haveno"],["t","retoswap"],["t","monero"],["t","XMR"],["t","EUR"],["t","USD"],["t","BRL"],["t","BTC"],["t","ETH"],["t","LTC"],["t","BCH"]]}] +[11:00:07.316] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"1 #USD = 5.347 #BRL\nFonte: https://www.xe.com","created_at":1759417201,"id":"0b0c49ba85f0067858012ea7b3f6d6c670d65a9e94df3757149420be72441046","kind":1,"pubkey":"0fb38b999eb08b583b2ffdc69a97b883b0627424d93eb9229a7873ed147f62bb","sig":"712663a4809c688edd0fd54663701dee3cd3aab8cc53d2f7517d9e0548b7629b2b7e89f818382fe62b677b0ac1c6a8111cfd9af43b5ccdb3f3fa9c8ef9d18ef4","tags":[["t","USD"],["t","DOLAR"],["t","BRL"],["t","REAL"]]}] +[11:00:07.837] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Best Value: \n\nLightningPay:\n48,160 sats = $100\n\nOther NZ options:\n46,752 sats - Easy Crypto\n37,504 sats - Swyftx\n28,565 sats - Independent Reserve\n","created_at":1759417201,"id":"c06958b8f1b5bcf738203f7b77d06e82263fea946e562fa874f0276254589063","kind":1,"pubkey":"b5974375791fb9946a41c2d13f4893bb23ff9aab23843b86a8a6c87b84379b21","sig":"5b886728b7b6d25adf916c5c4f0c09d3ef1a8b2779e0a60f69aeef4a3e9be2e3ec5a57eeb7b0a019d1a09927840c3f5dce798b891daaa4b4b1a7090c0f8f1e1a","tags":[]}] +[11:00:12.152] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:00:12.263] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:00:12.323] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:00:12.655] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"2025/10/2ã®ç²å¾—りã¨ãƒãƒ©ãƒ³ã‚­ãƒ³ã‚°â—\n\n🥇 11 kojira (nostr:npub1k0jrarx8um0lyw3nmysn50539ky4k8p7gfgzgrsvn8d7lccx3d0s38dczd)\n🥈 8 Szachik SabizaÅ„ski (nostr:npub1m78s5eqv8l7snc5nnxdvlgue6pt5epgplndtem99quhwyptas7jss2qx53)\n🥉 6 ナタリー RSS BOT ã€éžå…¬å¼ã€‘ (nostr:npub106su77ex643vgqac37juu89sulywv2g7zw4flfm54ta62ea97hnsudqla8)\n🥉 6 ã‚ã‹ãš (nostr:npub1r0hvae2ld84u9zgyqdsx7294ar4m4v3ayfnnpcftf0mk955ay93qejel3w)\n5ï¸âƒ£ 5 ã‚ã‚ (nostr:npub1eqw8nx0hya3cwvtc0rje6lpjzzf6gvuh0mngz898dhp6juuwrp5s5uzduw)\n5ï¸âƒ£ 5 (nostr:npub1j9am4ljxndc6ffhuwpr3hhnc37uh9w4d264kukhwmcfj29xeruhsmdxmk0)\n5ï¸âƒ£ 5 ã‚‚ã®:souji_site:₠掃ᴗ除 ₎:souji_site2: (nostr:npub1sjcvg64knxkrt6ev52rywzu9uzqakgy8ehhk8yezxmpewsthst6sw3jqcw)\n5ï¸âƒ£ 5 (・~・)mogmog bot (nostr:npub1mgmgmeh6jqzhhqlketsrncwtznexxxmr39pjc94v7qqhrl5pj26sss4jc7)\n5ï¸âƒ£ 5 ã—㊠(nostr:npub1ya9zaph357ktgkcp72gzsj358sjgewgnvaa584lhv9d4zvv5mzcq67kj0m)\n5ï¸âƒ£ 5 Helché (nostr:npub1gwa2ef7yp34wt78kr37mmf5a9jw2d5a84s7sq9t25mvzh7q60x0svdcqar)","created_at":1759417212,"id":"4c8dbe5eec4419acc94e84ec14c6248c8e4bd5ed9730263c6b3c8ed0750974cc","kind":1,"pubkey":"80d63d3d64f066c9234fff4f156e5c5d8fa1459bbb3987ab13c6f3e871731576","sig":"424cfe101ed634752686ac42ca7204651feb6b1496e01dffb0d428b9f28345bfc5d1b74afe885688261f00713a8a4230523aa83b7f3db6891c6df08d49964b22","tags":[]}] +[11:00:12.716] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:45 @ 917,386","created_at":1759417212,"id":"b4a011fcf582c8dfd0e84cef7b9c1d5bd53010c9f9ce5c5c85eb970596540a61","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"47f768ba1a74647149557ad47417ed325eef442971a8b15d5199562963a3f88df020f25a8f25018bbadbbc2f32d43181642613644cd12a1ebb1696c0c7befeed","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:00:12.902] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã«ãŒãã•ã‚“ã®ã‚¯ã‚½ç”»åƒã¨ã‚¯ã‚½å‹•ç”»ãŒå¥½ãã§ã™","created_at":1759417211,"id":"e3072d6ba1fc9dd61cec440b24f3a07a1808cc834a582ba177c37a798fd80c11","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"bd1042e14d9e8b663d121d44e69792e3f28e1b441145ba263a43e4e81bce4c87f8206567ed3a1ff4d98c61922ef4f7dc9eb026a718ffd2ba7a96cb48129ac17f","tags":[]}] +[11:00:14.734] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fresh Soapbox Sessions episode from nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 and I!\n\nnostr:note17cug49540n0uhjz8rujg6nyhwx86x0nkgfccdhwl3plp239jvtksq5se94","created_at":1759417214,"id":"9c555e28f054dc9e1640e1c4c9434a5c788de809cd7656b060eaa03bfcf52e46","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"29d52e555f870b110e70ca313c67fe62ee3ed0869acb9ca30f9b94a1a2efe3519f84ebb36913b2dd9f0ab21e0123dd2a0d194249113f1252ebfa84023a93bfdf","tags":[["q","f6388a96957cdfcbc8471f248d4c97718fa33e76427186dddf887e1544b262ed"],["p","31841306a66733739e3a1e5bd54886d7aabe398bff4aaf1e3e9f3a305e3ea581"],["p","31841306a66733739e3a1e5bd54886d7aabe398bff4aaf1e3e9f3a305e3ea581"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[11:00:14.822] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm\n\nSummer's not behind us when it's still getting up into the 80s 😭\n\n \n\n","created_at":1759417214,"id":"cb242a2d2189d58eaaf38416e8399a421f8d2fd0426a2478be12a747974b322f","kind":1,"pubkey":"c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","sig":"5351f28085f7079aad67391025b60fcd32ad57244c2277fe3280823d0a8b3b75fbd783da44f247303ce3c40adafe3b7792c9bf886c34acf92d9b7db4105904eb","tags":[["p","f10512dfdae6adf5c8b613bd2e423b4058fc862d743293bfa08471fcc9293bb3","wss://relay.primal.net"],["e","a590250d9471290a0604b48838b3b58d0ca7052c6d1aef6dcb3c4f1c90f6bf44","wss://relay.primal.net","root","f10512dfdae6adf5c8b613bd2e423b4058fc862d743293bfa08471fcc9293bb3"]]}] +[11:00:18.645] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"クイズを生æˆä¸­ã§ã™:powaparty:","created_at":1759417217,"id":"8f1caaa89965c7ea276ca4b5ec9dd7f06aa2323618434b0c7c1bef55677e8ff8","kind":1,"pubkey":"df4767cfa8cbe6defe7556698ace3ea98d62040ecb605b67ea3eae3ca287b2d3","sig":"e1a54b391584d83db258e6d8622fe983487a97746b16e5ab8d47f1a38a2ba9ecf645c48693b0afc31801315858f4072ded99119c53667a38ff367081b5740d3c","tags":[["client","algia","31990:2c7cc62a697ea3a7826521f3fd34f0cb273693cbe5e9310f35449f43622a5cdc:1727520612646","wss://nostr.compile-error.net"],["emoji","powaparty","https://emoji.slack-edge.com/TELEZS91P/partypowami/9d4b476daf8635c0.gif"]]}] +[11:00:19.521] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I don't really understand where your head would be","created_at":1759417221,"id":"bd552efd7b6977b0db83a154a78c111bc46c54bfa0434cb059ddd5d806aa00df","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"463da94fcf0b705d83861d903a0501e76affd890aeebfbcc7d4267a84ec1664173bd9f673fd767f2085cd74c125dc51d135039b4da766edf199cff3570d93366","tags":[["alt","A short note: I don't really understand where your head would be..."],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.bitcoiner.social/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","acbb34b7ed631a821385d3568c7fc58aa27f481b37be24b7004fad44d52980da","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","4c78e8e4578e30ee8c28ea8e96fa6fe29361df7b714bedfd10adf86fbf3ed84c","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","43f76d45c7b677a78aa52a17b1330aaf67a256d96b9ff5fac0cb07597ab594ea","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","513a6bdfd8a6308aac3b0c1782412e858fa7812a6203b6eef9c5c280e850aebb","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","3da7e27f9ae6f0e36812d2e97b74ec69e835e8ed1a211b16540496265e7490f5","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","d4476047102bacdd28a43154558add6d3c3f0ade8bc76ccc3d72d461f7a945ff","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","be92e778acda96cf1e622f19fa3fec596a9e9922f1f9cf83a498bb547b7463dd","wss://nos.lol/","reply","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"]]}] +[11:00:21.130] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:00:21.281] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I don't really understand where your head would be","created_at":1759417221,"id":"bd552efd7b6977b0db83a154a78c111bc46c54bfa0434cb059ddd5d806aa00df","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"463da94fcf0b705d83861d903a0501e76affd890aeebfbcc7d4267a84ec1664173bd9f673fd767f2085cd74c125dc51d135039b4da766edf199cff3570d93366","tags":[["alt","A short note: I don't really understand where your head would be..."],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.bitcoiner.social/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","acbb34b7ed631a821385d3568c7fc58aa27f481b37be24b7004fad44d52980da","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","4c78e8e4578e30ee8c28ea8e96fa6fe29361df7b714bedfd10adf86fbf3ed84c","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","43f76d45c7b677a78aa52a17b1330aaf67a256d96b9ff5fac0cb07597ab594ea","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","513a6bdfd8a6308aac3b0c1782412e858fa7812a6203b6eef9c5c280e850aebb","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","3da7e27f9ae6f0e36812d2e97b74ec69e835e8ed1a211b16540496265e7490f5","wss://nos.lol/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","d4476047102bacdd28a43154558add6d3c3f0ade8bc76ccc3d72d461f7a945ff","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","be92e778acda96cf1e622f19fa3fec596a9e9922f1f9cf83a498bb547b7463dd","wss://nos.lol/","reply","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"]]}] +[11:00:21.432] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"クイズを生æˆä¸­ã§ã™:powaparty:","created_at":1759417217,"id":"8f1caaa89965c7ea276ca4b5ec9dd7f06aa2323618434b0c7c1bef55677e8ff8","kind":1,"pubkey":"df4767cfa8cbe6defe7556698ace3ea98d62040ecb605b67ea3eae3ca287b2d3","sig":"e1a54b391584d83db258e6d8622fe983487a97746b16e5ab8d47f1a38a2ba9ecf645c48693b0afc31801315858f4072ded99119c53667a38ff367081b5740d3c","tags":[["client","algia","31990:2c7cc62a697ea3a7826521f3fd34f0cb273693cbe5e9310f35449f43622a5cdc:1727520612646","wss://nostr.compile-error.net"],["emoji","powaparty","https://emoji.slack-edge.com/TELEZS91P/partypowami/9d4b476daf8635c0.gif"]]}] +[11:00:21.492] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm\n\nSummer's not behind us when it's still getting up into the 80s 😭\n\n \n\n","created_at":1759417214,"id":"cb242a2d2189d58eaaf38416e8399a421f8d2fd0426a2478be12a747974b322f","kind":1,"pubkey":"c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","sig":"5351f28085f7079aad67391025b60fcd32ad57244c2277fe3280823d0a8b3b75fbd783da44f247303ce3c40adafe3b7792c9bf886c34acf92d9b7db4105904eb","tags":[["p","f10512dfdae6adf5c8b613bd2e423b4058fc862d743293bfa08471fcc9293bb3","wss://relay.primal.net"],["e","a590250d9471290a0604b48838b3b58d0ca7052c6d1aef6dcb3c4f1c90f6bf44","wss://relay.primal.net","root","f10512dfdae6adf5c8b613bd2e423b4058fc862d743293bfa08471fcc9293bb3"]]}] +[11:00:21.553] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fresh Soapbox Sessions episode from nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 and I!\n\nnostr:note17cug49540n0uhjz8rujg6nyhwx86x0nkgfccdhwl3plp239jvtksq5se94","created_at":1759417214,"id":"9c555e28f054dc9e1640e1c4c9434a5c788de809cd7656b060eaa03bfcf52e46","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"29d52e555f870b110e70ca313c67fe62ee3ed0869acb9ca30f9b94a1a2efe3519f84ebb36913b2dd9f0ab21e0123dd2a0d194249113f1252ebfa84023a93bfdf","tags":[["q","f6388a96957cdfcbc8471f248d4c97718fa33e76427186dddf887e1544b262ed"],["p","31841306a66733739e3a1e5bd54886d7aabe398bff4aaf1e3e9f3a305e3ea581"],["p","31841306a66733739e3a1e5bd54886d7aabe398bff4aaf1e3e9f3a305e3ea581"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[11:00:21.613] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:45 @ 917,386","created_at":1759417212,"id":"b4a011fcf582c8dfd0e84cef7b9c1d5bd53010c9f9ce5c5c85eb970596540a61","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"47f768ba1a74647149557ad47417ed325eef442971a8b15d5199562963a3f88df020f25a8f25018bbadbbc2f32d43181642613644cd12a1ebb1696c0c7befeed","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:00:21.674] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"2025/10/2ã®ç²å¾—りã¨ãƒãƒ©ãƒ³ã‚­ãƒ³ã‚°â—\n\n🥇 11 kojira (nostr:npub1k0jrarx8um0lyw3nmysn50539ky4k8p7gfgzgrsvn8d7lccx3d0s38dczd)\n🥈 8 Szachik SabizaÅ„ski (nostr:npub1m78s5eqv8l7snc5nnxdvlgue6pt5epgplndtem99quhwyptas7jss2qx53)\n🥉 6 ナタリー RSS BOT ã€éžå…¬å¼ã€‘ (nostr:npub106su77ex643vgqac37juu89sulywv2g7zw4flfm54ta62ea97hnsudqla8)\n🥉 6 ã‚ã‹ãš (nostr:npub1r0hvae2ld84u9zgyqdsx7294ar4m4v3ayfnnpcftf0mk955ay93qejel3w)\n5ï¸âƒ£ 5 ã‚ã‚ (nostr:npub1eqw8nx0hya3cwvtc0rje6lpjzzf6gvuh0mngz898dhp6juuwrp5s5uzduw)\n5ï¸âƒ£ 5 (nostr:npub1j9am4ljxndc6ffhuwpr3hhnc37uh9w4d264kukhwmcfj29xeruhsmdxmk0)\n5ï¸âƒ£ 5 ã‚‚ã®:souji_site:₠掃ᴗ除 ₎:souji_site2: (nostr:npub1sjcvg64knxkrt6ev52rywzu9uzqakgy8ehhk8yezxmpewsthst6sw3jqcw)\n5ï¸âƒ£ 5 (・~・)mogmog bot (nostr:npub1mgmgmeh6jqzhhqlketsrncwtznexxxmr39pjc94v7qqhrl5pj26sss4jc7)\n5ï¸âƒ£ 5 ã—㊠(nostr:npub1ya9zaph357ktgkcp72gzsj358sjgewgnvaa584lhv9d4zvv5mzcq67kj0m)\n5ï¸âƒ£ 5 Helché (nostr:npub1gwa2ef7yp34wt78kr37mmf5a9jw2d5a84s7sq9t25mvzh7q60x0svdcqar)","created_at":1759417212,"id":"4c8dbe5eec4419acc94e84ec14c6248c8e4bd5ed9730263c6b3c8ed0750974cc","kind":1,"pubkey":"80d63d3d64f066c9234fff4f156e5c5d8fa1459bbb3987ab13c6f3e871731576","sig":"424cfe101ed634752686ac42ca7204651feb6b1496e01dffb0d428b9f28345bfc5d1b74afe885688261f00713a8a4230523aa83b7f3db6891c6df08d49964b22","tags":[]}] +[11:00:21.734] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã«ãŒãã•ã‚“ã®ã‚¯ã‚½ç”»åƒã¨ã‚¯ã‚½å‹•ç”»ãŒå¥½ãã§ã™","created_at":1759417211,"id":"e3072d6ba1fc9dd61cec440b24f3a07a1808cc834a582ba177c37a798fd80c11","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"bd1042e14d9e8b663d121d44e69792e3f28e1b441145ba263a43e4e81bce4c87f8206567ed3a1ff4d98c61922ef4f7dc9eb026a718ffd2ba7a96cb48129ac17f","tags":[]}] +[11:00:21.795] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":":1x1_hiragana_15_o::1x1_hiragana_81_ya::1x1_hiragana_33_su::1x1_hiragana_72_mi::1x1_mark_nyoro:","created_at":1759417205,"id":"f57c3aad6b04cea3e2620c4c1156099941c5d4d71a580675ecf8cff8425de4e1","kind":1,"pubkey":"c08805f9bd4849049325747a8086a3c0e069adeb19d8f59ec4e6b5157b7d3416","sig":"f08b04dced938ed3a427857b1a82c7f2caec1e598524b9b63b412fe6c4f672ec5bc371781a723f4bf87d9e478e5c52a405edefded971959a090c0592ddcb13d1","tags":[["emoji","1x1_hiragana_15_o","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.15.o.webp"],["emoji","1x1_hiragana_81_ya","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.81.ya.webp"],["emoji","1x1_hiragana_33_su","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.33.su.webp"],["emoji","1x1_hiragana_72_mi","https://raw.githubusercontent.com/mitsugu/customemoji/main/hiragana/1.1.hiragana.72.mi.webp"],["emoji","1x1_mark_nyoro","https://raw.githubusercontent.com/mitsugu/customemoji/main/mark/1.1.mark.nyoro.webp"]]}] +[11:00:21.855] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã„ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹ã‹","created_at":1759417205,"id":"e6e221f3071455764a956c063f86a999bcd7903e1a9fdab6018bbb5946fbec17","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ff5b67c86a70ec38229bfb4db08cab19d7e523e5f4914bbc60f81a997dd7539dab1586cbdb419b2226ebd4d1341fa2fd4090b76b09d0b377672f064988ab598e","tags":[]}] +[11:00:21.916] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"0x518FEC\nhttps://hitony.com/images/everycolor/518FEC.png","created_at":1759417205,"id":"223b0453bb7e904b4da58a8c0f4448a4eaecf38583eeab1cca766ebeb3bef432","kind":1,"pubkey":"d9e7f74e22452b48c23b7d1f2714d0d4c4aa638b5391524d3728f8747f6cfd2a","sig":"9725652ff513e0f9c47ef2ca46374ef2ae279ce333ffba59838b6ddf44fa6943e704f28542e25472aac720334dc9b39969b72e3105bd869f79288c6c1a3c09ad","tags":[]}] +[11:00:21.976] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:00:22.037] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"gm! ☕ï¸","created_at":1759417195,"id":"b22c49f8d30269912b6f495dea147e08cdb15e9b30585f5a82d5ef1406650a54","kind":1,"pubkey":"339db62c91c8cfa8f085f89f115f1ad95df10ce749730239b6054d2453332908","sig":"596c88cd8e2904e7bb4593640a74adccb994b49b04bbe46f726b50652340575928b76f4cf42ed623cf27f49a47f0604bc3a124b6743f28833c667441596648f7","tags":[["e","542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","","root"],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[11:00:22.097] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Gm!","created_at":1759417221,"id":"468c847df2167d77a143016743d93185633e23c6f915bc951b2f885ffdd03c20","kind":1,"pubkey":"9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","sig":"595b3332a216aae0864842b75f63ad13715d335c6d9c077a340c72cd290abc822b1196bbd19f5d837fef06119744d5cb8f6097faa17e9e5e87a941e9838b535f","tags":[["e","542a373a11901256430e99a79aced44cf547d8890d0d9138c9c005eed1d3aa4b","","root"],["e","b22c49f8d30269912b6f495dea147e08cdb15e9b30585f5a82d5ef1406650a54","","reply"],["p","339db62c91c8cfa8f085f89f115f1ad95df10ce749730239b6054d2453332908"]]}] +[11:00:22.158] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"พี่นัท นัตตี้ทำทอดมันยังออà¸à¸¡à¸²à¹€à¸›à¹‡à¸™à¸£à¸°à¹€à¸šà¸´à¸”เลย ถ้าà¹à¸à¸‡à¹€à¸‚ียวหวานต้องออà¸à¸¡à¸²à¹€à¸›à¹‡à¸™à¸„ลองà¹à¸ªà¸™à¹à¸ªà¸šà¹à¸™à¹ˆà¸™à¸­à¸™ðŸ˜…","created_at":1759417221,"id":"5c269494340e14f69ba2d60f33338d6371b9423e27403331fcfe2034a9a77e72","kind":1,"pubkey":"22a0134ac59e2f8c8c16a59680c8fbc6513ae44db2858e9427b30a72fb9a72b6","sig":"6bde34e92ec50e13d0e97e32b5d1689140cbc73a9689cf17283ccd1523a97fbc3831fc54e09848b896939c1227048f1023b74b245f0161ea80c83d82839a07e1","tags":[["e","8111a1df12711a937f1aa2082cb5be09e15384bdc2fecad4fafcb681511c0485","","root"],["p","592143001ae09df747e55f7d08b50502735aab5fed98ab3481f54127b97db514"],["p","22a0134ac59e2f8c8c16a59680c8fbc6513ae44db2858e9427b30a72fb9a72b6","wss://nos.lol/"]]}] +[11:00:22.993] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã€æ™‚å ±ã§ã™","created_at":1759417222,"id":"cdfd4cca5eb3b1aa15c2ad194e88246cb353d9de02232718a37e63cb87a00bcf","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"12ac2fa6350c11b5ac9fc66211676dabe57def53813d6fb4786632aef7b22fe73f9a5062e4b30627275d75b062e2d414aa87a482b92693b60e58c7faf88eb93e","tags":[]}] +[11:00:25.047] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"betting on nostr:npub1ezw0xm0w52rd4yfdg9zlw9qvwdy46alzelklkefptrd203m37tuq4djmeg","created_at":1759417224,"id":"774e5d14eadb276056ee9a3ade4db0abb894dcab7d8d32340e9a80d2e71c69db","kind":1,"pubkey":"5c508c34f58866ec7341aaf10cc1af52e9232bb9f859c8103ca5ecf2aa93bf78","sig":"51c2574da1cd84746479129525789136f0fbb8181855b396295858938ed8a9fd9658b4ea771b30bdc9642315a909b9d7e81d2ea2701772021f63cb56c9f1bebf","tags":[["e","2a0474e6d1d101a4f286d702ecc49553325d3e00ffd61493d13f730bf5da1106","","root"],["p","ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453"],["p","c89cf36deea286da912d4145f7140c73495d77e2cfedfb652158daa7c771f2f8"]]}] +[11:00:27.653] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What is this graphic indicating","created_at":1759417227,"id":"855478a596bdcc5bebf582bbd08d86690fa1ced70f7733557a244ccf72391245","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"68edf7b9485e1064ebc4931f3798431990f5513036fb2acbf3cc2fd2c746b38b50727e032fd66b18b9a7cca8505372990f2802a073622c39c32383136ef1354e","tags":[["e","684535bd91eb12fbba3e97d6f75991922e587651a7b7d5c27f4707af7aa640e4","","root"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"]]}] +[11:00:28.509] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"No, Bill Maher, there is no ‘Christian genocide’ in Nigeria\n\nhttps://www.aljazeera.com/opinions/2025/10/2/no-bill-maher-there-is-no-christian-genocide-in-nigeria\n\nSource: [Al Jazeera](https://t.me/aljazeeraglobal/120844)","created_at":1759417228,"id":"80d84baeb23b3f3d3678f2fe83680785e62081cb534ce04bd777f6dc3d86c118","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"6b8eb38df7ad82e4a2c1056b8ccf6d272127344094f988698e13464c1340e26a2307f051668819442adeb7598ae599014471e4603aad2d6d6cf66bc467142455","tags":[]}] +[11:00:28.747] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:00:31.374] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"It shows how most of western world is just fiat food. ","created_at":1759417230,"id":"4a670bf228156a5d846c5a95b8217194558a5636940673162ece6e378d3082a2","kind":1,"pubkey":"66fd9c5c022bbe5b883b86e8a550c7d9c90d28fa244754c4f732e6dfe91fcb58","sig":"fcd6e03fa21bd133968bfb806917de2fbb0911ed8a1300caf0e167ee5d5f447dbac94e527b81a8e3336c9ad8eb60895a71f77399697c26266aff88eb0ac87f9f","tags":[["e","905bacd239e55c0f3b4984b5bf720f621675468ee8c36e7324d27a877f94d613","wss://relay.primal.net","root","66fd9c5c022bbe5b883b86e8a550c7d9c90d28fa244754c4f732e6dfe91fcb58"],["e","1845b4311f3e043b926633d76a676b9595142941c4ed42707ebbd682511de323","","reply"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db","","mention"],["p","c3b24f4f6c80df736c63d52aad1be60ce31d99a2c29175f1e0c644d0c1509e7e","","mention"]]}] +[11:00:31.767] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:30 IST\n\nBlock Number: 917387\nFee Rate: ₹63\nTime to mine: 00:00","created_at":1759417228,"id":"4f5c0ba2216a6016e9630d90f59adab58e4ecea9ad067eb16e1263763b22f324","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"449150bd061bd1ee6edde6d0a7a73411adba38dec9afd487fb436519b6960f5374937a930249b69e5aef1a060f85c492ff55c507dd2bf0b1bc34d18e4de5e89f","tags":[]}] +[11:00:34.837] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917387\nWeight: 3993955\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20.png","created_at":1759417234,"id":"6a4dbc9fa361411b23b31c95b0fae779baff82893295b9746e69afafc5758e81","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"100a6a3666b125380374bbfc0d235f69faad74ed4efa137efcb6059d4d03fdf075bfed673c63108b68979832c942d63114d1d9ff1d7a530d6a9f6839770b36a6","tags":[]}] +[11:00:34.898] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Oooo I forgot about chunky highlights. I did do that 😂","created_at":1759417234,"id":"20a74ba1431dfb1b82ddd64637f26c26a0a0431dfdbf6afeb89c178958bcb236","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"be591be9058dc17709b31fcb5299a9eaa105756e5ab3e72c81231f028b8aca07eb2952408776ffef2b1943b33c0e08446dbf3b70601268023bad953b39b5d1eb","tags":[["alt","A short note: Oooo I forgot about chunky highlights. I did do th..."],["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["e","2c71000041a7f6c41b4981d74c3e0b9093c33d313f0392afc6dcf75af779895e","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","91758a630133ae9a8644688f4e2170dc44e4ba0d8c9b3331d3381a451b6a9ebf","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[11:00:36.952] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🎥 Check out this #wildlife video:\n\nhttps://cdn.satellite.earth/02378ee542b064753db06b3226ceaeabf9009addca553cb1fc306e467c19da62.mp4\n📌 Clip: Niskin Sampling\n📺 Channel: SchmidtOcean\n","created_at":1759417236,"id":"ec82ab9c1637d50ac2e2b67d5c4041f3662bc55a1703055a3c6e41ce9f451b8b","kind":1,"pubkey":"65dfefde2efd179f631c4ad5b088cdd9de2b557410368b8d15e2faebf5af725c","sig":"51af28af1f8bdb64f9650492d5f8e0b73f366f65b69feb9509c1a8c986e5005fa9d77ca2fba2592a92f08b9826d6e67b453c5cd8388bbdf99db02d0ee8058bfc","tags":[["t","wildlife"]]}] +[11:00:37.566] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"SONGS『40周年!斉藤由貴・å—野陽å­ãƒ»æµ…香唯ã€ã§ã®ã‚¹ã‚±ãƒãƒ³åˆ‘事ã®ã‚·ãƒ¼ãƒ³ã€ãƒ†ãƒ¬ãƒ“ã§ã¯æµã›ã‚‹ã®ã«NHK ONEã§ã¯æµã›ãªã„ã£ã¦ã€ã€ã€\næ”¾é€æ³•改正ã§å…¨éƒ¨é…ä¿¡ã™ã‚‹ã“ã¨ã«ãªã£ãŸã‚“ã˜ã‚ƒãªã„ã®ã‹ãƒ»ãƒ»ãƒ»\nhttps://image.nostr.build/d0e06bb95dae059980ed1595d88631e1227fdbef9733b40432b6940a25ac26c9.jpg","created_at":1759417236,"id":"8f37081f957b773432bbcbc7123f51502f30cceeb871f767f298be9b7a6fc14f","kind":1,"pubkey":"e0a8cbd75ebfe4efbba8a65ff54bb435858404f6dc0ba4a6458a24d7f642d154","sig":"4975b895e55d7b4ea95e92da1a75381fe6ccd320fa78fc7459793e948bebabc1ef9b3e89188c1406f8623bb71b32536dd4f103f96cd6e22682fae1c8427def53","tags":[]}] +[11:00:39.065] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"PUKERS tacos from taco bell","created_at":1759417235,"id":"e4a8e543036781539294307c4584d1d98a71a4f874ce8cd57e80ea02e20f61aa","kind":1,"pubkey":"b75b9a3131f4263add94ba20beb352a11032684f2dac07a7e1af827c6f3c1505","sig":"9d54a7bc5cbb06eb4ae90b9017d2c34c53d7b12b64ef92a44d9745fcd64120ef7b039e236efb8c2ad8a45e14dc847f549a7927d34f8c66c08d83641b59439409","tags":[]}] +[11:00:39.790] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I guess I'm part of the #NostrUnderground.\n\nI think the little growth I've had was from the Brave Few, who migrated from Primal to Jumble.","created_at":1759417241,"id":"7abbbf738bf8cd44afe6dc4fc1a0b82ab7e3d601d267acd55da3435828ae550f","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"b976ed7896c0b18449ffcd4a667446d09180b7a71cd056f982a808689212a176fd9d31e8ec45803e85a6866ea49c5abc6316dcae97be635ed340805515614a74","tags":[["t","nostrunderground"],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eff22313c5a4c8234322d5e3dff73b81eb0c47e902200a0249c5d8d012d32da0","wss://orly-relay.imwald.eu/","reply","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"]]}] +[11:00:42.120] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:00:42.231] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:00:42.292] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:00:42.353] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:00:42.490] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:45 @ 917,387","created_at":1759417242,"id":"3bb246dab2fba06786c551909d01d998616c45aec3b3032476115fa027bb0116","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"984b0d7b11e679f0c4a1ef52d7b86ad843acf13ee3e9e5f4efefff5e254a943d3c42043f8c17781d62d25a19911de7526707d252892c57cd3a2227a728e046c7","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:00:49.854] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"still alive! not a zombie! ðŸ˜","created_at":1759417249,"id":"9417220ebf80c8a7f11bb8204f4f2454faaa2dcac2a84e8e10754882a86347ed","kind":1,"pubkey":"66f19c34d2e23e6b34c7d19067e71a53ded59c8a06b85857581e3f7b86dda352","sig":"1aaafa3883958730c1d01e98b5e6f820f8eb1c430ed49bba46556c0f8aa481d755829da8159220339c1133ad8fcf96de4e8c136d87f7b1409abadfe08b801074","tags":[["alt","A short note: still alive! not a zombie! ðŸ˜"]]}] +[11:00:51.132] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:00:51.283] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"still alive! not a zombie! ðŸ˜","created_at":1759417249,"id":"9417220ebf80c8a7f11bb8204f4f2454faaa2dcac2a84e8e10754882a86347ed","kind":1,"pubkey":"66f19c34d2e23e6b34c7d19067e71a53ded59c8a06b85857581e3f7b86dda352","sig":"1aaafa3883958730c1d01e98b5e6f820f8eb1c430ed49bba46556c0f8aa481d755829da8159220339c1133ad8fcf96de4e8c136d87f7b1409abadfe08b801074","tags":[["alt","A short note: still alive! not a zombie! ðŸ˜"]]}] +[11:00:51.477] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:45 @ 917,387","created_at":1759417242,"id":"3bb246dab2fba06786c551909d01d998616c45aec3b3032476115fa027bb0116","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"984b0d7b11e679f0c4a1ef52d7b86ad843acf13ee3e9e5f4efefff5e254a943d3c42043f8c17781d62d25a19911de7526707d252892c57cd3a2227a728e046c7","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:00:51.537] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I guess I'm part of the #NostrUnderground.\n\nI think the little growth I've had was from the Brave Few, who migrated from Primal to Jumble.","created_at":1759417241,"id":"7abbbf738bf8cd44afe6dc4fc1a0b82ab7e3d601d267acd55da3435828ae550f","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"b976ed7896c0b18449ffcd4a667446d09180b7a71cd056f982a808689212a176fd9d31e8ec45803e85a6866ea49c5abc6316dcae97be635ed340805515614a74","tags":[["t","nostrunderground"],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eff22313c5a4c8234322d5e3dff73b81eb0c47e902200a0249c5d8d012d32da0","wss://orly-relay.imwald.eu/","reply","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"]]}] +[11:00:51.598] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"SONGS『40周年!斉藤由貴・å—野陽å­ãƒ»æµ…香唯ã€ã§ã®ã‚¹ã‚±ãƒãƒ³åˆ‘事ã®ã‚·ãƒ¼ãƒ³ã€ãƒ†ãƒ¬ãƒ“ã§ã¯æµã›ã‚‹ã®ã«NHK ONEã§ã¯æµã›ãªã„ã£ã¦ã€ã€ã€\næ”¾é€æ³•改正ã§å…¨éƒ¨é…ä¿¡ã™ã‚‹ã“ã¨ã«ãªã£ãŸã‚“ã˜ã‚ƒãªã„ã®ã‹ãƒ»ãƒ»ãƒ»\nhttps://image.nostr.build/d0e06bb95dae059980ed1595d88631e1227fdbef9733b40432b6940a25ac26c9.jpg","created_at":1759417236,"id":"8f37081f957b773432bbcbc7123f51502f30cceeb871f767f298be9b7a6fc14f","kind":1,"pubkey":"e0a8cbd75ebfe4efbba8a65ff54bb435858404f6dc0ba4a6458a24d7f642d154","sig":"4975b895e55d7b4ea95e92da1a75381fe6ccd320fa78fc7459793e948bebabc1ef9b3e89188c1406f8623bb71b32536dd4f103f96cd6e22682fae1c8427def53","tags":[]}] +[11:00:51.658] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🎥 Check out this #wildlife video:\n\nhttps://cdn.satellite.earth/02378ee542b064753db06b3226ceaeabf9009addca553cb1fc306e467c19da62.mp4\n📌 Clip: Niskin Sampling\n📺 Channel: SchmidtOcean\n","created_at":1759417236,"id":"ec82ab9c1637d50ac2e2b67d5c4041f3662bc55a1703055a3c6e41ce9f451b8b","kind":1,"pubkey":"65dfefde2efd179f631c4ad5b088cdd9de2b557410368b8d15e2faebf5af725c","sig":"51af28af1f8bdb64f9650492d5f8e0b73f366f65b69feb9509c1a8c986e5005fa9d77ca2fba2592a92f08b9826d6e67b453c5cd8388bbdf99db02d0ee8058bfc","tags":[["t","wildlife"]]}] +[11:00:51.719] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"PUKERS tacos from taco bell","created_at":1759417235,"id":"e4a8e543036781539294307c4584d1d98a71a4f874ce8cd57e80ea02e20f61aa","kind":1,"pubkey":"b75b9a3131f4263add94ba20beb352a11032684f2dac07a7e1af827c6f3c1505","sig":"9d54a7bc5cbb06eb4ae90b9017d2c34c53d7b12b64ef92a44d9745fcd64120ef7b039e236efb8c2ad8a45e14dc847f549a7927d34f8c66c08d83641b59439409","tags":[]}] +[11:00:51.780] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Oooo I forgot about chunky highlights. I did do that 😂","created_at":1759417234,"id":"20a74ba1431dfb1b82ddd64637f26c26a0a0431dfdbf6afeb89c178958bcb236","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"be591be9058dc17709b31fcb5299a9eaa105756e5ab3e72c81231f028b8aca07eb2952408776ffef2b1943b33c0e08446dbf3b70601268023bad953b39b5d1eb","tags":[["alt","A short note: Oooo I forgot about chunky highlights. I did do th..."],["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["e","2c71000041a7f6c41b4981d74c3e0b9093c33d313f0392afc6dcf75af779895e","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","91758a630133ae9a8644688f4e2170dc44e4ba0d8c9b3331d3381a451b6a9ebf","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[11:00:51.840] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917387\nWeight: 3993955\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20.png","created_at":1759417234,"id":"6a4dbc9fa361411b23b31c95b0fae779baff82893295b9746e69afafc5758e81","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"100a6a3666b125380374bbfc0d235f69faad74ed4efa137efcb6059d4d03fdf075bfed673c63108b68979832c942d63114d1d9ff1d7a530d6a9f6839770b36a6","tags":[]}] +[11:00:51.901] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"It shows how most of western world is just fiat food. ","created_at":1759417230,"id":"4a670bf228156a5d846c5a95b8217194558a5636940673162ece6e378d3082a2","kind":1,"pubkey":"66fd9c5c022bbe5b883b86e8a550c7d9c90d28fa244754c4f732e6dfe91fcb58","sig":"fcd6e03fa21bd133968bfb806917de2fbb0911ed8a1300caf0e167ee5d5f447dbac94e527b81a8e3336c9ad8eb60895a71f77399697c26266aff88eb0ac87f9f","tags":[["e","905bacd239e55c0f3b4984b5bf720f621675468ee8c36e7324d27a877f94d613","wss://relay.primal.net","root","66fd9c5c022bbe5b883b86e8a550c7d9c90d28fa244754c4f732e6dfe91fcb58"],["e","1845b4311f3e043b926633d76a676b9595142941c4ed42707ebbd682511de323","","reply"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db","","mention"],["p","c3b24f4f6c80df736c63d52aad1be60ce31d99a2c29175f1e0c644d0c1509e7e","","mention"]]}] +[11:00:51.961] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:30 IST\n\nBlock Number: 917387\nFee Rate: ₹63\nTime to mine: 00:00","created_at":1759417228,"id":"4f5c0ba2216a6016e9630d90f59adab58e4ecea9ad067eb16e1263763b22f324","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"449150bd061bd1ee6edde6d0a7a73411adba38dec9afd487fb436519b6960f5374937a930249b69e5aef1a060f85c492ff55c507dd2bf0b1bc34d18e4de5e89f","tags":[]}] +[11:00:52.022] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:00:57.504] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"3 Fruit Diabetics Should Avoid 🚫 by Ken Berry\n\nhttps://www.youtube.com/shorts/A-P9jw64q1U\n\n#ken_berry #carnivore #keto #youtube #video #health #food #lowcarb #ketogenic #diet","created_at":1759417257,"id":"49ae8a7df875e1e78f9a861c56785beba7ddb9d9a3e0d3cd522155208740d465","kind":1,"pubkey":"60f1e1aacd33e6db4610176e52065730acfe7aa0c4513de0bbcf913cb1011081","sig":"5b017e2468dfff45fa44bec5426d7a79f905a893a4dfd7f1a8ead308cd4905d8996b39ed360e7b370c73db01cbf47ade389f0adc6382e620de170cf5857ba0c2","tags":[["ken_berry"],["carnivore"],["keto"],["youtube"],["video"],["health"],["food"],["lowcarb"],["ketogenic"],["diet"]]}] +[11:01:01.742] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So satisfying","created_at":1759417261,"id":"7fd9e058edd340ab24470c7e1759604ec76d1ef0247b7b2d32b31e0e1234e83f","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"3790b018eea3e19f2693ecde4f2b372d2a0e2b8564453b6dd203f90cb4b982315f935b6e76601a58ff56265f21b52174a1f57464d2d6c14a60a3dc73f2c7e626","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","8cec6aa596e112ae592eb5232ace859a81fd20261f555484a1c14d8cada9cbfe","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"]]}] +[11:01:02.134] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the power of nostr, is there is no central party to censor.\n\nrelays operators can block notes, but you can run your OWN relay with your OWN rules.\n\nmoderation here comes down to the individual. you decide who to block, its is tedious, ill admit that but with great power comes great responsibility right?\n\nalot of the spam, usually gets handle by the lovely relay operators.","created_at":1759417254,"id":"71ec74f25151aac9443d7e010f65c7ef9c09e57ded534f2378163ffe320d0db1","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"640a942c32614b2ba929ce86e70d0a501e9f345d0adfb0953cc13027040cd75b894e4e618dc51e50f37d83002fef0cd8c2b915f9cc6a4df58a0a006e1f2cd74e","tags":[["e","295f5cc435d2e5dacf13ade002d50c6c65f8e462e3ecd64dedb4822b79141d34","wss://noornode.nostr1.com/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","b52348aec8525682a643892c94022aecc178d918d753af0a2d4c3d9f1ec28097"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[11:01:03.965] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"~~~~~~~~~~~~~~~~~~~~~\n#Bitcoin BTC/Gold hourly price\n~~~~~~~~~~~~~~~~~~~~~\n1 BTC: 30.96 oz | 24hr: 2.13%\n1 oz Gold: 3,229,974 sats\n\nBitcoin marketcap: 2.4 trillion USD\nGold marketcap: 26.7 trillion USD\nBitcoin Vs Gold marketcap: 8.9%\n\nUpdated: 2025-10-02 | 15:01 UTC","created_at":1759417263,"id":"ed6f4989ebead142ca0ce8f4a5f12a2fca6ee7ad2030b9c3aa5eeda1ab488d10","kind":1,"pubkey":"90fd5d464f8e8c235a33ac1515c9a808a0c8fc07804ef81d650b5a31cd475ff8","sig":"baddf63171a98bf809d5e814dbbc8bf19c44b62a73673cecc7716a6d78df15f71a3b7b8f29338789aeaf45345ed33ef3d5d028073cce25f44260fdc7550ad257","tags":[["t","bitcoin"],["t","btcxau"],["t","btcgold"],["t","gold"]]}] +[11:01:06.062] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Moooooaaaare melon 🤤","created_at":1759417265,"id":"f6d47367296e91632f4f05365b53f85fa8e87ed93cebdfdd7e5328025767cfb4","kind":1,"pubkey":"66fd9c5c022bbe5b883b86e8a550c7d9c90d28fa244754c4f732e6dfe91fcb58","sig":"7c0d2f3aa8b58fbdf2d630e1c95bf042b1e6c5b498cf003c9332328747c641c25f05553b4670fb8ba48212d1baa3951b2b921a64172347759eecbaa99c8baa34","tags":[["e","905bacd239e55c0f3b4984b5bf720f621675468ee8c36e7324d27a877f94d613","wss://relay.primal.net","root"],["e","dfac7de38361805c1a1a47c82f9a9c09be2ab3fb83a8a8a8161c5ff7856db432","wss://relay.dwadziesciajeden.pl/","reply"],["p","14eaddfcb39b5fd38b4ca1cbef2c0788ad3aef3be095402c37d6acc17f5c72d4","","mention"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db","","mention"]]}] +[11:01:12.148] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:01:12.259] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:01:12.320] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:01:12.380] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:01:16.808] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can be both!\n\nAnd you had no problem when switching hands?","created_at":1759417278,"id":"82c4c0651699eacfc6c952d497f2f057b02e23494e82ce4934b8404779ba5484","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"d4c2a71efa1e5f9141d1a8e58909283847cb24b5da1d9ece0ff3996024d3798d185ef7404641cc5c3f99de2a29fb71a9a304f6b7c200a8a195a55598fc4b9010","tags":[["alt","A short note: You can be both!\n\nAnd you had no problem when swit..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","736f30b39f475d8907ea4b3bc4b6644d34d6ad2fa139cd0b1ec0532e3be0b0e7","wss://relay.primal.net/","","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["e","bc6e8a14a0f06cab92212dc444a37f6439fbadd926af6f609525adfb741b1643","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","96b2c783ac6c6895009c65fed763363925c11088aca168468c88cd5f65f597cb","wss://relay.primal.net/","reply","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","wss://nos.lol/"]]}] +[11:01:20.106] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin - a mural of humanity \n\n","created_at":1759417277,"id":"020d39ff7fc4c097c403df68bf1b574c345f76cbf07caec7c09b359467ffaa58","kind":1,"pubkey":"a9f429128ec33ee8029a0a7146b0c45f7b9f05adb8a3da889700a68cabc149b4","sig":"182b2ad48455aa3844dda31468408279110cba35b6c860c9851dd8ed423d17469a5ec055ed6ad7a60c67056ee8e9d8eb6509498712b21a2476007ba9e17624ef","tags":[["t","Bitcoin"]]}] +[11:01:21.163] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:01:21.315] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can be both!\n\nAnd you had no problem when switching hands?","created_at":1759417278,"id":"82c4c0651699eacfc6c952d497f2f057b02e23494e82ce4934b8404779ba5484","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"d4c2a71efa1e5f9141d1a8e58909283847cb24b5da1d9ece0ff3996024d3798d185ef7404641cc5c3f99de2a29fb71a9a304f6b7c200a8a195a55598fc4b9010","tags":[["alt","A short note: You can be both!\n\nAnd you had no problem when swit..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","736f30b39f475d8907ea4b3bc4b6644d34d6ad2fa139cd0b1ec0532e3be0b0e7","wss://relay.primal.net/","","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["e","bc6e8a14a0f06cab92212dc444a37f6439fbadd926af6f609525adfb741b1643","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","96b2c783ac6c6895009c65fed763363925c11088aca168468c88cd5f65f597cb","wss://relay.primal.net/","reply","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","wss://nos.lol/"]]}] +[11:01:21.375] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin - a mural of humanity \n\n","created_at":1759417277,"id":"020d39ff7fc4c097c403df68bf1b574c345f76cbf07caec7c09b359467ffaa58","kind":1,"pubkey":"a9f429128ec33ee8029a0a7146b0c45f7b9f05adb8a3da889700a68cabc149b4","sig":"182b2ad48455aa3844dda31468408279110cba35b6c860c9851dd8ed423d17469a5ec055ed6ad7a60c67056ee8e9d8eb6509498712b21a2476007ba9e17624ef","tags":[["t","Bitcoin"]]}] +[11:01:21.465] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Moooooaaaare melon 🤤","created_at":1759417265,"id":"f6d47367296e91632f4f05365b53f85fa8e87ed93cebdfdd7e5328025767cfb4","kind":1,"pubkey":"66fd9c5c022bbe5b883b86e8a550c7d9c90d28fa244754c4f732e6dfe91fcb58","sig":"7c0d2f3aa8b58fbdf2d630e1c95bf042b1e6c5b498cf003c9332328747c641c25f05553b4670fb8ba48212d1baa3951b2b921a64172347759eecbaa99c8baa34","tags":[["e","905bacd239e55c0f3b4984b5bf720f621675468ee8c36e7324d27a877f94d613","wss://relay.primal.net","root"],["e","dfac7de38361805c1a1a47c82f9a9c09be2ab3fb83a8a8a8161c5ff7856db432","wss://relay.dwadziesciajeden.pl/","reply"],["p","14eaddfcb39b5fd38b4ca1cbef2c0788ad3aef3be095402c37d6acc17f5c72d4","","mention"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db","","mention"]]}] +[11:01:21.525] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"~~~~~~~~~~~~~~~~~~~~~\n#Bitcoin BTC/Gold hourly price\n~~~~~~~~~~~~~~~~~~~~~\n1 BTC: 30.96 oz | 24hr: 2.13%\n1 oz Gold: 3,229,974 sats\n\nBitcoin marketcap: 2.4 trillion USD\nGold marketcap: 26.7 trillion USD\nBitcoin Vs Gold marketcap: 8.9%\n\nUpdated: 2025-10-02 | 15:01 UTC","created_at":1759417263,"id":"ed6f4989ebead142ca0ce8f4a5f12a2fca6ee7ad2030b9c3aa5eeda1ab488d10","kind":1,"pubkey":"90fd5d464f8e8c235a33ac1515c9a808a0c8fc07804ef81d650b5a31cd475ff8","sig":"baddf63171a98bf809d5e814dbbc8bf19c44b62a73673cecc7716a6d78df15f71a3b7b8f29338789aeaf45345ed33ef3d5d028073cce25f44260fdc7550ad257","tags":[["t","bitcoin"],["t","btcxau"],["t","btcgold"],["t","gold"]]}] +[11:01:21.586] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So satisfying","created_at":1759417261,"id":"7fd9e058edd340ab24470c7e1759604ec76d1ef0247b7b2d32b31e0e1234e83f","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"3790b018eea3e19f2693ecde4f2b372d2a0e2b8564453b6dd203f90cb4b982315f935b6e76601a58ff56265f21b52174a1f57464d2d6c14a60a3dc73f2c7e626","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","8cec6aa596e112ae592eb5232ace859a81fd20261f555484a1c14d8cada9cbfe","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"]]}] +[11:01:21.646] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"3 Fruit Diabetics Should Avoid 🚫 by Ken Berry\n\nhttps://www.youtube.com/shorts/A-P9jw64q1U\n\n#ken_berry #carnivore #keto #youtube #video #health #food #lowcarb #ketogenic #diet","created_at":1759417257,"id":"49ae8a7df875e1e78f9a861c56785beba7ddb9d9a3e0d3cd522155208740d465","kind":1,"pubkey":"60f1e1aacd33e6db4610176e52065730acfe7aa0c4513de0bbcf913cb1011081","sig":"5b017e2468dfff45fa44bec5426d7a79f905a893a4dfd7f1a8ead308cd4905d8996b39ed360e7b370c73db01cbf47ade389f0adc6382e620de170cf5857ba0c2","tags":[["ken_berry"],["carnivore"],["keto"],["youtube"],["video"],["health"],["food"],["lowcarb"],["ketogenic"],["diet"]]}] +[11:01:21.707] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the power of nostr, is there is no central party to censor.\n\nrelays operators can block notes, but you can run your OWN relay with your OWN rules.\n\nmoderation here comes down to the individual. you decide who to block, its is tedious, ill admit that but with great power comes great responsibility right?\n\nalot of the spam, usually gets handle by the lovely relay operators.","created_at":1759417254,"id":"71ec74f25151aac9443d7e010f65c7ef9c09e57ded534f2378163ffe320d0db1","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"640a942c32614b2ba929ce86e70d0a501e9f345d0adfb0953cc13027040cd75b894e4e618dc51e50f37d83002fef0cd8c2b915f9cc6a4df58a0a006e1f2cd74e","tags":[["e","295f5cc435d2e5dacf13ade002d50c6c65f8e462e3ecd64dedb4822b79141d34","wss://noornode.nostr1.com/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","b52348aec8525682a643892c94022aecc178d918d753af0a2d4c3d9f1ec28097"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[11:01:21.767] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"still alive! not a zombie! ðŸ˜","created_at":1759417249,"id":"9417220ebf80c8a7f11bb8204f4f2454faaa2dcac2a84e8e10754882a86347ed","kind":1,"pubkey":"66f19c34d2e23e6b34c7d19067e71a53ded59c8a06b85857581e3f7b86dda352","sig":"1aaafa3883958730c1d01e98b5e6f820f8eb1c430ed49bba46556c0f8aa481d755829da8159220339c1133ad8fcf96de4e8c136d87f7b1409abadfe08b801074","tags":[["alt","A short note: still alive! not a zombie! ðŸ˜"]]}] +[11:01:21.828] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:45 @ 917,387","created_at":1759417242,"id":"3bb246dab2fba06786c551909d01d998616c45aec3b3032476115fa027bb0116","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"984b0d7b11e679f0c4a1ef52d7b86ad843acf13ee3e9e5f4efefff5e254a943d3c42043f8c17781d62d25a19911de7526707d252892c57cd3a2227a728e046c7","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:01:21.888] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I guess I'm part of the #NostrUnderground.\n\nI think the little growth I've had was from the Brave Few, who migrated from Primal to Jumble.","created_at":1759417241,"id":"7abbbf738bf8cd44afe6dc4fc1a0b82ab7e3d601d267acd55da3435828ae550f","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"b976ed7896c0b18449ffcd4a667446d09180b7a71cd056f982a808689212a176fd9d31e8ec45803e85a6866ea49c5abc6316dcae97be635ed340805515614a74","tags":[["t","nostrunderground"],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://theforest.nostr1.com/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eff22313c5a4c8234322d5e3dff73b81eb0c47e902200a0249c5d8d012d32da0","wss://orly-relay.imwald.eu/","reply","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"]]}] +[11:01:21.949] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:01:22.009] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"æ–°ã—ã„マルコフ連鎖クイズãŒå‡ºé¡Œã•れã¾ã—ãŸï¼\n \nhttps://tiltpapa.github.io/markov-quiz/\n \n出題対象ã«ã•れã¦ã‚‚よã„ã¨ã„ã†æ–¹ã¯ \"OK\" ã¨ãƒªãƒ—ライ\n出題対象ã‹ã‚‰å¤–ã—ã¦ã»ã—ã„æ–¹ã¯ \"NG\" ã¨ãƒªãƒ—ライ\n\n#markov_quiz","created_at":1759417280,"id":"6da070994d9447906e7deaaa542efedf81d780a56bcf053d4bb9d41f699ebba9","kind":1,"pubkey":"df4767cfa8cbe6defe7556698ace3ea98d62040ecb605b67ea3eae3ca287b2d3","sig":"8bd162bae260ce69b85602f90179f4aeb1e67608ce7132309f01a148a1437b890873dcbf6668cd21677e1c2f992f7f213429fa02ddbcb2c31d315850c0e76339","tags":[["client","algia","31990:2c7cc62a697ea3a7826521f3fd34f0cb273693cbe5e9310f35449f43622a5cdc:1727520612646","wss://nostr.compile-error.net"],["r","https://tiltpapa.github.io/markov-quiz/"],["t","markov_quiz"]]}] +[11:01:22.402] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ðŸ¤","created_at":1759417281,"id":"d999acfa3c578a9843bb90b80a8d1b2bde6482061fed0b97ab7b6ad1cc8b96a6","kind":1,"pubkey":"67ada8e344532cbf82f0e702472e24c7896e0e1c96235eacbaaa4b8616052171","sig":"eba3cfcfbc98cdb9347e5d0c674fc3a1e6341ccc4aee66d1d9446654ad65e5800c2a979cbf1ad85124a18a0eb0ce161f3f9d1198577c67e367aaa2deda15c6f4","tags":[["e","4e1f321179c29c00776de910d40aa9902f37f3d2e25574ef6d96b8a69d0b8769","wss://relay.damus.io/","root"],["e","2b24566c54e11d9431a043089bd7310c4db2453a9abc0d6717c3047b9d72f7d4","","reply"],["p","b7996c183e036df27802945b80bbdc8b0bf5971b6621a86bf3569c332117f07d"],["p","edb470271297ac5a61f277f3cd14de54c67eb5ccd20ef0d9df29be18685bb004"]]}] +[11:01:26.447] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Wayyy better times 😂🫂","created_at":1759417286,"id":"e2a78bc3c6fd6d0ae28c1f0ec2654aaa92dc8848857754fcec447885e03368a6","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"8b5e1e2caecabaee3644accdd1947564ab98a71c8dae2f405d712054322fd64f056ae26a9021fa37567302e82d862455c5070e5f267258e0433c29a3a9ac10a0","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://Bevo.nostr1.com","root"],["e","5c29e300c3fd7685782eacc8cff1f1b398b5e25c97ff1821b558e437d04bd9f6","","reply"],["p","c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86"]]}] +[11:01:32.877] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"And when He gives us Himself, He frees us. He frees us to live differently. Not in fear. Not in bitterness. Not always guarding what is ours. But in charity. In truth. In love. Because we know that nothing we give up is ever lost in Him. Because we know that nothing taken from us can rob us of His kingdom. Because we know that every insult, every slight, every injustice we endure for His sake will be made right in His resurrection.\n\nhttps://www.youtube.com/watch?v=cEfwgI0tkas","created_at":1759417292,"id":"359c32d75b40123420add87ec00061d54b8802a990246fe6eeabe30f5a79a38e","kind":1,"pubkey":"248d077e17268dee253a31c33cd5ca88eac031d3d98f5dd0b397cceb377c622f","sig":"b3d892c9d25a52a10b01e6c0e38ce1052dd32b35396148f46a95f3cd905e4827131af934465c90c1694a314af09fd7c758e193af05912daa0431125c9aee52f9","tags":[["r","wss://atlas.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr.blankfors.se/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"]]}] +[11:01:33.969] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚れï¼ã‚ã‚ã„ãªããªã„?","created_at":1759417293,"id":"79e08d9ad4a797b7d8c88a63f0115a940c8a288e3616c9f03808c8893733f430","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"8eec279dedf242ea42fbb217dd33537db1a9aacb6f27078d1244536657ba65f83774ddd4adfdc1c0a56fb2c413b06a6a2fb0900893d535b1785f4cd95fe813cd","tags":[]}] +[11:01:34.582] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Lollll. Report back!!","created_at":1759417294,"id":"5911570996249e0d933b2fca3368904322501241a03977080d7f00f8c05d0e9c","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"8891327797a9acdf315668ec96f8453d84239f2727a17bd3d624953d3377d4e364297a21073262dc42dae9b1968e442759cb629bd4542abb8902028bbb50aa7f","tags":[["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://wot.sovbit.host/","root"],["e","1f087da2206440266ef03a77da4e331d3809446dc1d78b8e706036f8e6b2c311","","reply"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[11:01:37.853] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã©ã†ã›ã‚¿ãƒ€ã§ã“れã ã‘éŠã¹ã‚‹ã®ä»Šã®ã†ã¡ã ã‘ã ã‚ã†ã—","created_at":1759417296,"id":"f4ff344eb6c7b539a2a5886ed681a605fcdc55f87a4701985c929be7e5ad7f13","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b76295eab49fb3b7f0f396c4bb735cc60c590d333c1b8a1f9163a56396a4b1a60ec75571223b2c0f2820585663c39b44a86966795dc479b06a8e65a58184d9bf","tags":[]}] +[11:01:39.352] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€ã€Œã‚«ã‚°ãƒ©ãƒãƒã€9巻帯ã«å €è¶Šè€•å¹³ãŒæã„ãŸãƒãƒ’ロã€ã‚¸ãƒ£ãƒ³ãƒ—ã§ã¯å¤–è–—å¥ã«ã‚ˆã‚‹ãƒ‡ã‚¯ã‚‚】\n\nhttps://natalie.mu/comic/news/642659","created_at":1759417296,"id":"efe873f0e2d1519d08b0d415790795ee50ec7d38b751ec83474dbd7fde78ec27","kind":1,"pubkey":"7ea1cf7b26d562c403b88fa5ce1cb0e7c8e6291e13aa9fa774aafba567a5f5e7","sig":"5346c1efa16192abb90ffa8f98bfc9ef7d7de3b5dc17cde259b9b2212ca6f57ae29f529dad4681471938b93124cf0c3c7a028aea84ed70277506fd9fcdcb88be","tags":[["r","https://natalie.mu/comic/news/642659"],["proxy","https://natalie.mu/comic/feed/news#https://natalie.mu/comic/news/642659","rss"]]}] +[11:01:40.673] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Watch out – more girls incoming!","created_at":1759417299,"id":"712b07da3001ae4db956ad25bd5a5340f28bb04d341ef29040b526956189c271","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"9b3f3e9df71f39539cca32e095992cc96ea435eb0ec8867a2e803554269d58d2ce92ceff4d773ef1a3be21a1193144b3e668b40d0812cf1c986736337212eb9d","tags":[]}] +[11:01:41.176] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"@0xbitcoiner's signal: ZeusLN/zeus · Release v0.11.5 - MAY THE â‚¿ITCOIN #LIGHTNING STRIKE YOU! ðš•ðš’ðš—ðš”: https://stacker.news/items/1245632/r/HODLR - #bitcoin #LN #askNostr","created_at":1759417300,"id":"10b0bfacd17bc5f40f935803f380d08410a20f7ed5ae4aeb1146180d4b34c4ab","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"bf5410c0b7e8b5be40e5190f36680c27af0c5a68451b222d0596621a1681e0fc192753cd50798d91a2d3b4aafee2ea84352a52b26d12f57631b747983b3612d6","tags":[]}] +[11:01:42.183] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:01:42.294] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:01:42.354] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:01:42.415] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:01:46.659] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€ã€10月3日付】本日発売ã®å˜è¡Œæœ¬ãƒªã‚¹ãƒˆã€‘\n\nhttps://natalie.mu/comic/news/642180","created_at":1759417306,"id":"74031886171983d1633c1ddef1f146d9260199f9efd20a04f17252c753e3a686","kind":1,"pubkey":"7ea1cf7b26d562c403b88fa5ce1cb0e7c8e6291e13aa9fa774aafba567a5f5e7","sig":"d2c1e5358a25de795aad953fe4a6dbc088a81b4699eec903cf7580984a4853cfb077436ce44fe2e62fda2bc5ae0cf510328a715eb795c1cfe78372891c76a438","tags":[["r","https://natalie.mu/comic/news/642180"],["proxy","https://natalie.mu/comic/feed/news#https://natalie.mu/comic/news/642180","rss"]]}] +[11:01:47.071] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I found it quite tricky!","created_at":1759417308,"id":"3b1c1633af82621b9c7d90ef3e265d1ea1ae782043e57ca9a222b5d9d0e51f47","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"c5d498f0c8029f978a2c3701b7414b221941148039661adac1a3b8390e4dc9fbeac63aab0ed29aa7c3ddeeb929eab622b5a7effdcd4406255390a5c8aaea1800","tags":[["alt","A short note: I found it quite tricky!"],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.bitcoiner.social/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","0e20e6e9ca26f3ca0c231997bf4f85c536ac0cb8b0a0de257a60622b28054530","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[11:01:51.117] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:01:51.268] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"é«˜åº¦ã«æˆé•·ã—ãŸã‚¹ãƒãƒ¼ãƒ„ゲームã¯å®Ÿå†™ã¨åŒºåˆ¥ãŒã¤ã‹ãªã„","created_at":1759417311,"id":"25e76bcf6f04647455fd3888cfa42d7305f90ff61d42a35a6c54bc4c1f1cd6e8","kind":1,"pubkey":"59317d32e89cbd5fb7e5f8e16bbee29e35f12b4bc6561c9a691cc068af0dbfbd","sig":"91fea63a085624beca2e70a4061f0034b11399631490b21354d7e120eda75724614742b6a82e618c539d1514ddd9575f7f3eb1ee29d1b675b6f5c12e1e21e76b","tags":[["e","f56e28b5dbe52d851bc2a114b4354f35139ad533e4b749f62f8a344bfba30624","","root"],["e","f2ac7cca79be669749f2a5385e625ee3806d8e117fe902b28acd9581ff570ee8","","reply"],["p","6369fb82bec54226bf09bb365b6f0d71b16c41f56e7edfd4f97de23f9c3281da"]]}] +[11:01:51.329] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I found it quite tricky!","created_at":1759417308,"id":"3b1c1633af82621b9c7d90ef3e265d1ea1ae782043e57ca9a222b5d9d0e51f47","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"c5d498f0c8029f978a2c3701b7414b221941148039661adac1a3b8390e4dc9fbeac63aab0ed29aa7c3ddeeb929eab622b5a7effdcd4406255390a5c8aaea1800","tags":[["alt","A short note: I found it quite tricky!"],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.bitcoiner.social/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","0e20e6e9ca26f3ca0c231997bf4f85c536ac0cb8b0a0de257a60622b28054530","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[11:01:51.389] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€ã€10月3日付】本日発売ã®å˜è¡Œæœ¬ãƒªã‚¹ãƒˆã€‘\n\nhttps://natalie.mu/comic/news/642180","created_at":1759417306,"id":"74031886171983d1633c1ddef1f146d9260199f9efd20a04f17252c753e3a686","kind":1,"pubkey":"7ea1cf7b26d562c403b88fa5ce1cb0e7c8e6291e13aa9fa774aafba567a5f5e7","sig":"d2c1e5358a25de795aad953fe4a6dbc088a81b4699eec903cf7580984a4853cfb077436ce44fe2e62fda2bc5ae0cf510328a715eb795c1cfe78372891c76a438","tags":[["r","https://natalie.mu/comic/news/642180"],["proxy","https://natalie.mu/comic/feed/news#https://natalie.mu/comic/news/642180","rss"]]}] +[11:01:51.450] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"@0xbitcoiner's signal: ZeusLN/zeus · Release v0.11.5 - MAY THE â‚¿ITCOIN #LIGHTNING STRIKE YOU! ðš•ðš’ðš—ðš”: https://stacker.news/items/1245632/r/HODLR - #bitcoin #LN #askNostr","created_at":1759417300,"id":"10b0bfacd17bc5f40f935803f380d08410a20f7ed5ae4aeb1146180d4b34c4ab","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"bf5410c0b7e8b5be40e5190f36680c27af0c5a68451b222d0596621a1681e0fc192753cd50798d91a2d3b4aafee2ea84352a52b26d12f57631b747983b3612d6","tags":[]}] +[11:01:51.510] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Watch out – more girls incoming!","created_at":1759417299,"id":"712b07da3001ae4db956ad25bd5a5340f28bb04d341ef29040b526956189c271","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"9b3f3e9df71f39539cca32e095992cc96ea435eb0ec8867a2e803554269d58d2ce92ceff4d773ef1a3be21a1193144b3e668b40d0812cf1c986736337212eb9d","tags":[]}] +[11:01:51.571] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€ã€Œã‚«ã‚°ãƒ©ãƒãƒã€9巻帯ã«å €è¶Šè€•å¹³ãŒæã„ãŸãƒãƒ’ロã€ã‚¸ãƒ£ãƒ³ãƒ—ã§ã¯å¤–è–—å¥ã«ã‚ˆã‚‹ãƒ‡ã‚¯ã‚‚】\n\nhttps://natalie.mu/comic/news/642659","created_at":1759417296,"id":"efe873f0e2d1519d08b0d415790795ee50ec7d38b751ec83474dbd7fde78ec27","kind":1,"pubkey":"7ea1cf7b26d562c403b88fa5ce1cb0e7c8e6291e13aa9fa774aafba567a5f5e7","sig":"5346c1efa16192abb90ffa8f98bfc9ef7d7de3b5dc17cde259b9b2212ca6f57ae29f529dad4681471938b93124cf0c3c7a028aea84ed70277506fd9fcdcb88be","tags":[["r","https://natalie.mu/comic/news/642659"],["proxy","https://natalie.mu/comic/feed/news#https://natalie.mu/comic/news/642659","rss"]]}] +[11:01:51.631] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã©ã†ã›ã‚¿ãƒ€ã§ã“れã ã‘éŠã¹ã‚‹ã®ä»Šã®ã†ã¡ã ã‘ã ã‚ã†ã—","created_at":1759417296,"id":"f4ff344eb6c7b539a2a5886ed681a605fcdc55f87a4701985c929be7e5ad7f13","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b76295eab49fb3b7f0f396c4bb735cc60c590d333c1b8a1f9163a56396a4b1a60ec75571223b2c0f2820585663c39b44a86966795dc479b06a8e65a58184d9bf","tags":[]}] +[11:01:51.692] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Lollll. Report back!!","created_at":1759417294,"id":"5911570996249e0d933b2fca3368904322501241a03977080d7f00f8c05d0e9c","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"8891327797a9acdf315668ec96f8453d84239f2727a17bd3d624953d3377d4e364297a21073262dc42dae9b1968e442759cb629bd4542abb8902028bbb50aa7f","tags":[["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://wot.sovbit.host/","root"],["e","1f087da2206440266ef03a77da4e331d3809446dc1d78b8e706036f8e6b2c311","","reply"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[11:01:51.753] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚れï¼ã‚ã‚ã„ãªããªã„?","created_at":1759417293,"id":"79e08d9ad4a797b7d8c88a63f0115a940c8a288e3616c9f03808c8893733f430","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"8eec279dedf242ea42fbb217dd33537db1a9aacb6f27078d1244536657ba65f83774ddd4adfdc1c0a56fb2c413b06a6a2fb0900893d535b1785f4cd95fe813cd","tags":[]}] +[11:01:51.813] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"And when He gives us Himself, He frees us. He frees us to live differently. Not in fear. Not in bitterness. Not always guarding what is ours. But in charity. In truth. In love. Because we know that nothing we give up is ever lost in Him. Because we know that nothing taken from us can rob us of His kingdom. Because we know that every insult, every slight, every injustice we endure for His sake will be made right in His resurrection.\n\nhttps://www.youtube.com/watch?v=cEfwgI0tkas","created_at":1759417292,"id":"359c32d75b40123420add87ec00061d54b8802a990246fe6eeabe30f5a79a38e","kind":1,"pubkey":"248d077e17268dee253a31c33cd5ca88eac031d3d98f5dd0b397cceb377c622f","sig":"b3d892c9d25a52a10b01e6c0e38ce1052dd32b35396148f46a95f3cd905e4827131af934465c90c1694a314af09fd7c758e193af05912daa0431125c9aee52f9","tags":[["r","wss://atlas.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr.blankfors.se/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"]]}] +[11:01:51.874] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:01:53.817] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"it isnt a big deal\nit isnt a thing\ni dont ~have~ to be home\ni can kill time elsewhere\n\ndo i wish my neighbor hired a different landscaping company? sure that would be nice. would i ask him to do so? no.","created_at":1759417313,"id":"f1371cb5c0b80661fce06100359eef74999ca833bdae1f0a0460b6fda04c85fb","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d6b2bb9bd763b7118db175f3d549f6b64605cc341ecc31ce270853b23c1fa7318b0f25147feed5190503d78c0bf9b04f37c52afa7213cfc3596fe6f7b27b5e70","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","7f5521d215d849010bef256e40464281c1b6081f863a6549019f9cc0cce10c1f","","reply"]]}] +[11:01:59.547] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãŠã„ï¼é¹¿ãªã¾ã“","created_at":1759417319,"id":"bb14c11a9e17bfbf47127ba9b5a99b78130aa3af0ddf264757463fd05aa4aa55","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"694c30b94ed45d2727e7845ef0b3eb3e82bc4b7ba757b90af745d2d6dfd9d87f73a4206af7f0e81085b948287e14104511bf4cc20aa9e8ed8fa9c96c0f8560b9","tags":[]}] +[11:01:59.608] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I never did that thankfully. I think I wanted them though 😂","created_at":1759417319,"id":"99db1f1eab50b7ee284663bfde002ca2e78dd2aec43b2425dd22d899600df06a","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"f9e9ba73734fefb4a790d4fff0770aa0baf73aa5046d578f41305349ad4531634748bd93e15433bf8536462f1cb75e90b7bed3c4888edc8212a1cf8433fe930f","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root"],["e","20a74ba1431dfb1b82ddd64637f26c26a0a0431dfdbf6afeb89c178958bcb236","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"]]}] +[11:02:02.608] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"~~~~~~~~~~~~~~~~~~~~~\n#Bitcoin BTC/SEK hourly price\n~~~~~~~~~~~~~~~~~~~~~\n1 BTC: 1,119,220 sek | 24hr: 1.82%\n1 SEK: 89 sats\nMarket cap: 22,324,480,777,224 sek\n\nUpdated: 2025-10-02 | 17:02 CEST","created_at":1759417322,"id":"e6ea574b1373cb7a434fe2650d578fb4dd824b8a471b57218377cead0210b899","kind":1,"pubkey":"80b2b76a3a1fc4332df2129d9a77b32b027fbb226cca9a96f73fc9bea972c5a8","sig":"8554795d93a16a83136b453af8cc4e61f157743ac9928788ee2d6235b28f6a3ea7cf48aa5f5afbf5fdb2bd757e723f3b8bd02b577df442b58f3b061099d268d1","tags":[["t","bitcoin"],["t","btcsek"],["t","sweden"]]}] +[11:02:02.780] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://m.youtube.com/watch?v=WzlK7EvnWfQ","created_at":1759417322,"id":"d0c65c1847edf6306c2c7daa98f330d607c0659de02969deab4e123788136799","kind":1,"pubkey":"81d85b6876e0d61213e9ce25b60c3d53eb5caae339b613562786403ac6d2bf26","sig":"efded8da9ac347a519369a6bfcf9a9b7267aa84dbd56a1fe8967d7f820f9ad163bc31e5da25e34449c0d8a30f9ede89ec65e42941845550116f9eed7097f98b2","tags":[["e","978c89f9e45eac8053fadf7cf76fb434ae03b1d91ca38543877602efea85b797","wss://feeds.nostr.band/video","root"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","","mention"]]}] +[11:02:05.056] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! Stay humble & hash sats! â›ï¸","created_at":1759417324,"id":"20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","kind":1,"pubkey":"5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","sig":"69bc4628040f9b96d2584c9fd3ed51452fb417e562d7e0a2bc123c5aa941a7f610026cf9a7252b65d7941a2c77db68913aa0d276a90f795d86933fcee3ae9854","tags":[]}] +[11:02:06.686] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The current price of Bitcoin is ~$118802.80\n\nBlock Height : 917387\n\n[2025-10-02 15:02:04 UTC] \n\n #bitcoin #nxus #nyx #oracle","created_at":1759417326,"id":"ff6d2958a1d65c0be92d21282b3b98a87ede817ddc492263fa516de7a823766a","kind":1,"pubkey":"ff8464aa592cdec49f76bf3c0b505433c47427d04eeaec1fa4c4e104709dabc3","sig":"d0014a7bd0785176e4e68232614840981458635906bdef39d57b201f3b15ce74a9aed28ac061711fccf6b5d5f9bad570e9f3a4659a63cba6ea13186582c0dead","tags":[]}] +[11:02:10.642] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Confess Christ, Take Up Your Cross, Follow Him—Mt. 10:32-39\n\nhttps://www.youtube.com/live/9EmxTRPVTOQ","created_at":1759417330,"id":"9a3e682828d4fafceba117bc6a31adfc92b0881e816250d5b5249edad506b0c6","kind":1,"pubkey":"248d077e17268dee253a31c33cd5ca88eac031d3d98f5dd0b397cceb377c622f","sig":"9d7359e7057996a240e29721f3c6a4b64e5b732dcb8ffccd9d3d377f65db3fbc99bda1eeb2390649bae716efd8ec8f5a0e37b3738022b479fe933c26b72a0d15","tags":[["r","wss://atlas.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr.blankfors.se/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"]]}] +[11:02:12.202] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:02:12.313] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:02:12.373] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:02:12.434] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:02:12.877] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://www.t.u-tokyo.ac.jp/press/pr2025-10-01-003","created_at":1759417331,"id":"9526d6cfe978923bdf7ba224baf84fe8f0a94ee01647b34a871219c86d4fa223","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d1be86331510c3eb7833e27d8dcebcc79a48f51e38f8b48ddaf50b80c16797e2e6ae5b78eeb98fb4f12ba6e2e08d4430456905c4c2c3c82923b0bbfb55ce2103","tags":[["r","https://www.t.u-tokyo.ac.jp/press/pr2025-10-01-003"]]}] +[11:02:15.707] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"early 2000's were prime\nhttps://www.youtube.com/watch?v=8WYHDfJDPDc","created_at":1759417335,"id":"5fd3fc85acaa26c497afff4ebc052a9fba21bd87e7f2ddc1cf3e343bbefacec1","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"f06704b0760c848b80adab19d9d763e60e587fb3c63bd8b5b6ded643a056d34413a4e0f321b21191a606e5ef3da3f40428c9f3f488829fd49492eac85e04583f","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","7fd9e058edd340ab24470c7e1759604ec76d1ef0247b7b2d32b31e0e1234e83f","wss://nostr.mom/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:02:16.777] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can't expect to call a witch's name and see nothing magical. 🤣🤣🤣\nhttps://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg\n#nsfw\nnostr:nevent1qqsyya27dmkjfhwk3n6dn9c3m9ddslawtp9erd6jgfp830zut3jwtxqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczypdzvxnpxyv5dkfjdtz4rx0yjs4wp5g3pp44cgdgs4c983pwh4zgqqcyqqqqqqgtzhjpx","created_at":1759417336,"id":"1b7e8b4899920b5cb946aac2d405016bd20be9720fa2e16029f5dc706467e059","kind":1,"pubkey":"03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","sig":"f97f9aeb602e83d611dd5eee2e7d95b2d9d39cd3ec4d3106c7f04a35269aa3bf5a5a94d9bc12714e3a94d1c802b5fe2b298000fb425149c12cd4cb56515f7946","tags":[["alt","A short note: You can't expect to call a witch's name and see no..."],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["t","nsfw"],["r","https://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg"],["q","42755e6eed24ddd68cf4d99711d95ad87fae584b91b752424278bc5c5c64e598","wss://relay.nostr.band/","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["imeta","url https://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg","x 02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508","size 100616","m image/jpeg","dim 1080x1080","blurhash U9EC5#00JB01%g^+DNxu~VDiM|Ip8_jZaexu","ox 02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508","alt ","content-warning "]]}] +[11:02:18.941] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"æ¾å±‹ã®è±šæ±ã‚’味噌æ±ã®æ„Ÿè¦šã§æ³¨æ–‡ã™ã‚‹ã¨ã¡ã‚‡ã£ã¨å¤šã„…ã£ã¦ãªã‚‹","created_at":1759417337,"id":"63c07fa1a351cb515584c88c6b49976483d8cb8206bd40b9bb07d544b3d078b1","kind":1,"pubkey":"36e451bb5b2c238ad1ebdce58af58da62124b7935278a238fdb775d3163e8ffa","sig":"f46c6582a036944785a046f9a7f5a6c33c9157b059b9d91d7a59a5dca8ab74bcf1a9deb53ffbd156315329c8994dcc6cb09e73521cc7dfccaec2c28eb289084b","tags":[]}] +[11:02:19.356] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"his property his money his choices who he hires","created_at":1759417338,"id":"1bc40405f51d83b514f61ec81802e0afe60a656d310eff1ac41f3a14c251bc24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"b25c696736ed2eb1f6a411874ff5adaf73f3b98cae2db743a5b9b5a523f5b2c43691580617343d6248756ad547d707e85a19de49d73f59f72e241381ce347d2c","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","f1371cb5c0b80661fce06100359eef74999ca833bdae1f0a0460b6fda04c85fb","","reply"]]}] +[11:02:21.189] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:02:21.341] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"his property his money his choices who he hires","created_at":1759417338,"id":"1bc40405f51d83b514f61ec81802e0afe60a656d310eff1ac41f3a14c251bc24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"b25c696736ed2eb1f6a411874ff5adaf73f3b98cae2db743a5b9b5a523f5b2c43691580617343d6248756ad547d707e85a19de49d73f59f72e241381ce347d2c","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","f1371cb5c0b80661fce06100359eef74999ca833bdae1f0a0460b6fda04c85fb","","reply"]]}] +[11:02:21.533] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"æ¾å±‹ã®è±šæ±ã‚’味噌æ±ã®æ„Ÿè¦šã§æ³¨æ–‡ã™ã‚‹ã¨ã¡ã‚‡ã£ã¨å¤šã„…ã£ã¦ãªã‚‹","created_at":1759417337,"id":"63c07fa1a351cb515584c88c6b49976483d8cb8206bd40b9bb07d544b3d078b1","kind":1,"pubkey":"36e451bb5b2c238ad1ebdce58af58da62124b7935278a238fdb775d3163e8ffa","sig":"f46c6582a036944785a046f9a7f5a6c33c9157b059b9d91d7a59a5dca8ab74bcf1a9deb53ffbd156315329c8994dcc6cb09e73521cc7dfccaec2c28eb289084b","tags":[]}] +[11:02:21.594] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can't expect to call a witch's name and see nothing magical. 🤣🤣🤣\nhttps://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg\n#nsfw\nnostr:nevent1qqsyya27dmkjfhwk3n6dn9c3m9ddslawtp9erd6jgfp830zut3jwtxqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczypdzvxnpxyv5dkfjdtz4rx0yjs4wp5g3pp44cgdgs4c983pwh4zgqqcyqqqqqqgtzhjpx","created_at":1759417336,"id":"1b7e8b4899920b5cb946aac2d405016bd20be9720fa2e16029f5dc706467e059","kind":1,"pubkey":"03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","sig":"f97f9aeb602e83d611dd5eee2e7d95b2d9d39cd3ec4d3106c7f04a35269aa3bf5a5a94d9bc12714e3a94d1c802b5fe2b298000fb425149c12cd4cb56515f7946","tags":[["alt","A short note: You can't expect to call a witch's name and see no..."],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["t","nsfw"],["r","https://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg"],["q","42755e6eed24ddd68cf4d99711d95ad87fae584b91b752424278bc5c5c64e598","wss://relay.nostr.band/","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["imeta","url https://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg","x 02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508","size 100616","m image/jpeg","dim 1080x1080","blurhash U9EC5#00JB01%g^+DNxu~VDiM|Ip8_jZaexu","ox 02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508","alt ","content-warning "]]}] +[11:02:21.654] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"early 2000's were prime\nhttps://www.youtube.com/watch?v=8WYHDfJDPDc","created_at":1759417335,"id":"5fd3fc85acaa26c497afff4ebc052a9fba21bd87e7f2ddc1cf3e343bbefacec1","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"f06704b0760c848b80adab19d9d763e60e587fb3c63bd8b5b6ded643a056d34413a4e0f321b21191a606e5ef3da3f40428c9f3f488829fd49492eac85e04583f","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","7fd9e058edd340ab24470c7e1759604ec76d1ef0247b7b2d32b31e0e1234e83f","wss://nostr.mom/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:02:21.715] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://www.t.u-tokyo.ac.jp/press/pr2025-10-01-003","created_at":1759417331,"id":"9526d6cfe978923bdf7ba224baf84fe8f0a94ee01647b34a871219c86d4fa223","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d1be86331510c3eb7833e27d8dcebcc79a48f51e38f8b48ddaf50b80c16797e2e6ae5b78eeb98fb4f12ba6e2e08d4430456905c4c2c3c82923b0bbfb55ce2103","tags":[["r","https://www.t.u-tokyo.ac.jp/press/pr2025-10-01-003"]]}] +[11:02:21.775] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Confess Christ, Take Up Your Cross, Follow Him—Mt. 10:32-39\n\nhttps://www.youtube.com/live/9EmxTRPVTOQ","created_at":1759417330,"id":"9a3e682828d4fafceba117bc6a31adfc92b0881e816250d5b5249edad506b0c6","kind":1,"pubkey":"248d077e17268dee253a31c33cd5ca88eac031d3d98f5dd0b397cceb377c622f","sig":"9d7359e7057996a240e29721f3c6a4b64e5b732dcb8ffccd9d3d377f65db3fbc99bda1eeb2390649bae716efd8ec8f5a0e37b3738022b479fe933c26b72a0d15","tags":[["r","wss://atlas.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr.blankfors.se/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"]]}] +[11:02:21.836] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The current price of Bitcoin is ~$118802.80\n\nBlock Height : 917387\n\n[2025-10-02 15:02:04 UTC] \n\n #bitcoin #nxus #nyx #oracle","created_at":1759417326,"id":"ff6d2958a1d65c0be92d21282b3b98a87ede817ddc492263fa516de7a823766a","kind":1,"pubkey":"ff8464aa592cdec49f76bf3c0b505433c47427d04eeaec1fa4c4e104709dabc3","sig":"d0014a7bd0785176e4e68232614840981458635906bdef39d57b201f3b15ce74a9aed28ac061711fccf6b5d5f9bad570e9f3a4659a63cba6ea13186582c0dead","tags":[]}] +[11:02:21.896] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! Stay humble & hash sats! â›ï¸","created_at":1759417324,"id":"20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","kind":1,"pubkey":"5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","sig":"69bc4628040f9b96d2584c9fd3ed51452fb417e562d7e0a2bc123c5aa941a7f610026cf9a7252b65d7941a2c77db68913aa0d276a90f795d86933fcee3ae9854","tags":[]}] +[11:02:21.957] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://m.youtube.com/watch?v=WzlK7EvnWfQ","created_at":1759417322,"id":"d0c65c1847edf6306c2c7daa98f330d607c0659de02969deab4e123788136799","kind":1,"pubkey":"81d85b6876e0d61213e9ce25b60c3d53eb5caae339b613562786403ac6d2bf26","sig":"efded8da9ac347a519369a6bfcf9a9b7267aa84dbd56a1fe8967d7f820f9ad163bc31e5da25e34449c0d8a30f9ede89ec65e42941845550116f9eed7097f98b2","tags":[["e","978c89f9e45eac8053fadf7cf76fb434ae03b1d91ca38543877602efea85b797","wss://feeds.nostr.band/video","root"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3","","mention"]]}] +[11:02:22.017] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"~~~~~~~~~~~~~~~~~~~~~\n#Bitcoin BTC/SEK hourly price\n~~~~~~~~~~~~~~~~~~~~~\n1 BTC: 1,119,220 sek | 24hr: 1.82%\n1 SEK: 89 sats\nMarket cap: 22,324,480,777,224 sek\n\nUpdated: 2025-10-02 | 17:02 CEST","created_at":1759417322,"id":"e6ea574b1373cb7a434fe2650d578fb4dd824b8a471b57218377cead0210b899","kind":1,"pubkey":"80b2b76a3a1fc4332df2129d9a77b32b027fbb226cca9a96f73fc9bea972c5a8","sig":"8554795d93a16a83136b453af8cc4e61f157743ac9928788ee2d6235b28f6a3ea7cf48aa5f5afbf5fdb2bd757e723f3b8bd02b577df442b58f3b061099d268d1","tags":[["t","bitcoin"],["t","btcsek"],["t","sweden"]]}] +[11:02:22.078] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:02:22.471] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã€ãŸã‚ã‹ã‘ã“ã¨ã‚‚ã‚","created_at":1759417340,"id":"fc57090a658a92a4056cdd944d6b9498e64e57aa2721e4f2e58268da8ff38da1","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"11e8654f3bd4bfa19c2982b119ede5965227adbcbe63838777120f0d91d2c325b01a0ebfe643b1f9414cfe2c024c8a1d69af9ed1eb96c053c7545cb6484c4df0","tags":[["alt","A short note: ã‚ã€ãŸã‚ã‹ã‘ã“ã¨ã‚‚ã‚"]]}] +[11:02:27.735] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM. \nnostr:nevent1qqsfye9xwr8nmhpj64x458sh9s0qgl2qgd6a4xsva3zelklfgyj44hqprfmhxue69uhkvun9v4kxz7fwwdhhvcnfwshxsmmnwshsyg9s9wrsql8v48l68qpa7lyk45m3p9kdgdczqg8xalmc3qvwze8wpqpsgqqqqqqswnj4lv","created_at":1759417347,"id":"90071fa33c04869747b193ed524341a5c20b1b431ae758240fedb9325e0e9f05","kind":1,"pubkey":"44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","sig":"1e7c493a0c6f9f9570c47ae0be8b8e3a18f32ae81ecce652a7ac3de9a6624d5d6e662f0c0b2e651d5c3bd10c02cd92709ec7fce52c91a97d794606ba286d397e","tags":[["alt","A short note: GM. \nnostr:nevent1qqsfye9xwr8nmhpj64x458sh9s0qgl2q..."],["p","b02b87007ceca9ffa3803df7c96ad371096cd43702020e6eff788818e164ee08","wss://nos.lol/"],["q","9264a670cf3ddc32d54d5a1e172c1e047d404375da9a0cec459fdbe941255adc","wss://freelay.sovbit.host/","b02b87007ceca9ffa3803df7c96ad371096cd43702020e6eff788818e164ee08"],["zap","b02b87007ceca9ffa3803df7c96ad371096cd43702020e6eff788818e164ee08","wss://nos.lol/","0.9"],["zap","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/","0.1"]]}] +[11:02:30.451] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"As-tu essayé Shakepay ? Inscris toi avec mon lien et nous recevrons chacun 20 $ pour acheter de la crypto:\nhttps://shakepay.me/r/9LDRWCX","created_at":1759417349,"id":"56503242221868f0440f45825ff425042f4b00adeb3650892717987596a28c6e","kind":1,"pubkey":"659832bec295a3daf6dda3cd76cd33c3503384bca9c70ec740f99e32d5f1a000","sig":"6444cb933f8c8a678fd83679661422c63cccd2fe1b780b6b09c7c0ff2df194fbe012634727e3546a7ba281cae54b994ed12a2da1a1cd13a2049f4b5d48931041","tags":[]}] +[11:02:30.955] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759417350,"id":"05d8d49ba8acaa98cec7624277c247bb58db1ad4b6627d6f7109d257c4ee6a44","kind":1,"pubkey":"91aeab23b5664edaa57dbe00b041ccb50544f89d7d956345bbd78b7dbaa48660","sig":"54f0629893a9b672dbc9cb4e70f1bf1911bb08ecff8d31effc99754fe50485867a603772e45b10b6108d1d0ed4db1a6bf4702615052660a835a968ad5214eb9d","tags":[["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://ditto.pub/relay","root","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd"],["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://ditto.pub/relay","reply","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","wss://ditto.pub/relay"],["client","Ditto","31990:15b68d319a088a9b0c6853d2232aff0d69c8c58f0dccceabfb9a82bd4fd19c58:ditto","wss://ditto.pub/relay"]]}] +[11:02:32.295] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yes!! You just know where things are without having to look.","created_at":1759417352,"id":"d869ce7b5dfac4d3c4567a6b896d19cf531e1c36cd9df6d8ac608340082ff497","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"db3435422182d3d8c17331392b2ca1954a96576d056b72fb04980bc1f39771dd39a4e7fbe3467f4f50cf577b43ff090173f621085d2ad278f079f5c4a0e16cad","tags":[["alt","A short note: Yes!! You just know where things are without havin..."],["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d206eb50ce4a5bb2d0e6747a1b7ff16b3089201ce48e01e845d1034b5c4a8bda","wss://premium.primal.net/","reply","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","wss://premium.primal.net/"]]}] +[11:02:33.045] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"SAME😂 im not upgrading","created_at":1759417352,"id":"76dd60da22d24680d0f897d19eac25d3244bd31904631da0f3b4dd9eeabb028b","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"13736dd2308239813221e832be2eaaa98b2d6d0d0f3fb08ac398805d7b5b99804802bbf4817dabf0367c02917c5bc1c2aa3d81c37827527180b387c70fa3a789","tags":[["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","wss://nostr.mom","root"],["e","d206eb50ce4a5bb2d0e6747a1b7ff16b3089201ce48e01e845d1034b5c4a8bda","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c"]]}] +[11:02:33.106] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I may never get a new truck because I don't wanna give up my knobs and buttons. \n\n\n\nhttps://blossom.primal.net/6cbefa473a29cdc39cd871910f3f8ee38a835826f51f7bcfba77da5243f903ba.jpg","created_at":1759417288,"id":"d206eb50ce4a5bb2d0e6747a1b7ff16b3089201ce48e01e845d1034b5c4a8bda","kind":1,"pubkey":"fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","sig":"267b495398debbb35630b71ac12663025b42db6120a5dc7c06a812254be1a69ea5ff179465ced8fa5f1fc5d454ef171bdd3365e60a2c934153a16952464ae33a","tags":[["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.mom"],["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","wss://nostr.mom","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["imeta","url https://blossom.primal.net/6cbefa473a29cdc39cd871910f3f8ee38a835826f51f7bcfba77da5243f903ba.jpg","m image/jpeg","ox 6cbefa473a29cdc39cd871910f3f8ee38a835826f51f7bcfba77da5243f903ba","dim 3072x4080"]]}] +[11:02:35.196] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Thailand #Bitcoin merchant movement is growing nostr:naddr1qvzqqqr4gupzq04ty37x8we4m73cup72zqhkmg5t4xuag6r3ja6rhh369vwcpthdqq2nyjzntgenwm65xfr8v3t22fnx5m69x9xn2zjkz53","created_at":1759417354,"id":"fabcec98194328b089b848b74e79f64fa4b409b97ce88b0785f65fc36aca7a1e","kind":1,"pubkey":"146bda4ec6932830503ee4f8e8b626bd7b3a5784232b8240ba15c8cbff9a07cd","sig":"f97383f2461c13960c47f167ab4a0dfa526150b0f3f88e74d2f4ac233763033f8111239d1f0dd3fbc0b33b9992ac52fbbb2e36efeb1aa50778c98fb0f2f5e45b","tags":[["client","Yakihonne","31990:20986fb83e775d96d188ca5c9df10ce6d613e0eb7e5768a0f0b12b37cdac21b3:1700732875747"],["q","30023:3eab247c63bb35dfa38e07ca102f6da28ba9b9d4687197743bde3a2b1d80aeed:2HSZ37oT2FvEjRfjoE1M5"],["p","3eab247c63bb35dfa38e07ca102f6da28ba9b9d4687197743bde3a2b1d80aeed"],["t","Bitcoin"]]}] +[11:02:35.717] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I prefer to not post images of myself or family. The rest is all actually about and day to day shenanigans.. Most of it boring to the masses, occasionally something that sparks cool conversations and connections. I’m about to hit follow and learn more - nice to meet you here!","created_at":1759417355,"id":"dc740e2904603fdd7555a61d9e20b3d254074b057dd5550cf11c59ffee78efc3","kind":1,"pubkey":"0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","sig":"d7d76efd3373549deacb175b5b1f59a0b355a034e517e0d5aab2f663444cd0ab035166ae40236520590de72e50e577a6eb0c6ba13198c2240c6381dde3d3dded","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.primal.net","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","","mention"]]}] +[11:02:38.435] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"More feedback needed on this:\n\nnostr:nevent1qqsvg4hajp9ysrpjxt5rc8we6at9hzvg2qnk6ugfccw7q6yl3f5dhjcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7q3qnjst6azswskk5gp3ns8r6nr8nj0qg65acu8gaa2u9yz7yszjxs9sxpqqqqqqzj8nhdy","created_at":1759417360,"id":"edcea7722c90c5df2aaaf3ed2f53aaa806a773af2af5142ddee9d4da7a51dd58","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"ad0ded89f5eb03e269f480a732be90a95d0b3e39b46c4c38dc435bd82a1cf5ef97c8d43c26b01623a4bbe2615bc5d1506f194dc84163b13993f9a4c4176c28a8","tags":[["alt","A short note: More feedback needed on this:\n\nnostr:nevent1qqsvg4..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["q","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[11:02:40.811] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That cat on the right is sat just below my neck, the other one, below my belly.","created_at":1759417360,"id":"3f007c4c272bca39743a25d33568bd1ab1f1ec95bf1a14e7e7597ab6a6c6cda5","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"1d1dee8df2048ccca1d4f71e86cc62225ec8a30869e4caede73d43b25302dc7134b4ff79e3b5003d63fa4456525baeed7dbc217dbe7985c1fc41ea1cd0dd4d15","tags":[["alt","A short note: That cat on the right is sat just below my neck, t..."],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.mom/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","acbb34b7ed631a821385d3568c7fc58aa27f481b37be24b7004fad44d52980da","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","4c78e8e4578e30ee8c28ea8e96fa6fe29361df7b714bedfd10adf86fbf3ed84c","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","43f76d45c7b677a78aa52a17b1330aaf67a256d96b9ff5fac0cb07597ab594ea","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","513a6bdfd8a6308aac3b0c1782412e858fa7812a6203b6eef9c5c280e850aebb","wss://nostr.wine/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","3da7e27f9ae6f0e36812d2e97b74ec69e835e8ed1a211b16540496265e7490f5","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","d4476047102bacdd28a43154558add6d3c3f0ade8bc76ccc3d72d461f7a945ff","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","be92e778acda96cf1e622f19fa3fec596a9e9922f1f9cf83a498bb547b7463dd","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","bd552efd7b6977b0db83a154a78c111bc46c54bfa0434cb059ddd5d806aa00df","wss://nostr.wine/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"]]}] +[11:02:42.149] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:02:42.200] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://elfreth.house.gov/services/impact-government-shutdown \n\n\n\nhttps://blossom.primal.net/aa2640ce1d23a63ffcae52bbb7af2b9711199e376eb7d497befa0cde6105d877.png","created_at":1759417361,"id":"6fc65d47b2567f502b13dbcff06f0329dab680700e1051999bd61c5485bc618b","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"04f9e7353f1a0c2ca7dc7e9d705bb4616221ab225de79b53e295a3008950e24e0e39f7ac873c7cf5eeb415031370d9352b15b498b43ce2d75503ff5c5b9acbcf","tags":[["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://nostr-pub.wellorder.net"],["p","b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a"],["p","b7e453f6fdeb79cca1d86fbf0c4b20ebeead1de9f5067522638d03ce9ff08e8c"],["e","ad5d36988c00764f663a010c8b3c74059abf45ef137195d4fdfdda863b58b318","","reply","b7e453f6fdeb79cca1d86fbf0c4b20ebeead1de9f5067522638d03ce9ff08e8c"],["e","bb2cf84c127a30a06a09c824b4b5dca22ef8dab9ebd78fb5ae507f7a30e4a87f","wss://nostr-pub.wellorder.net","root","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["imeta","url https://blossom.primal.net/aa2640ce1d23a63ffcae52bbb7af2b9711199e376eb7d497befa0cde6105d877.png","m image/png","ox aa2640ce1d23a63ffcae52bbb7af2b9711199e376eb7d497befa0cde6105d877","dim 1080x1576"]]}] +[11:02:42.227] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:02:42.287] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:02:42.348] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:02:47.109] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \nhttps://images2.imgbox.com/41/b4/KjfWEPor_o.jpg \n#BeautifulLifeVibes ✨😊","created_at":1759417366,"id":"3e200bafcad56184e9cb1339b0637ba1ca7c7b4d7adb286bb50bde19271ca0fc","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"baffb7e993cd2ff2a4f3ce82fb1ecd7a35ad16ba4747e02bbc9d3dde84c5b54af156342bf823a4ba4afb8251e1a07782dc01211ed3e7d9d3ffe578d10531b1ad","tags":[]}] +[11:02:50.712] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Me refería al de la nostr:nprofile1qqs8w4uth79dl594qj50gc043xtf47zvlenaysmzrpwyy7ae6fkvdpgpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgwwaehxw309ahx7uewd3hkctcfjchje que imparto con nostr:nprofile1qqsyu9me0re6pulxuzpkwnj5dkyp83dy9x2p7mpa2gtnvajxf88xepqelq32z y nostr:nprofile1qqs8lft0t45k92c78n2zfe6ccvqzhpn977cd3h8wnl579zxhw5dvr9qprpmhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0qythwumn8ghj7enjv4h8xtnwdaehgu339e3k7mf0vwfndp mañana 👇👇👇\nhttps://www.satlantis.io/events/1038 \n\n","created_at":1759417370,"id":"8759b315be42da017eb6c336ea4040f74ee8c3bdeeca267645f22403e9059253","kind":1,"pubkey":"89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9","sig":"9945043a212c0f14c27b60a289f73401efe005684bf8ba90cfcf74f7458155f5883cbf2ffeaaa9c3219897340e8f458c39c52bb0f08f7bbc4ff9434f71f8cae4","tags":[["p","77578bbf8adfd0b504a8f461f589969af84cfe67d24362185c427bb9d26cc685","wss://eden.nostr.land/","mention"],["p","4e177978f3a0f3e6e083674e546d8813c5a429941f6c3d521736764649ce6c84","","mention"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","wss://filter.nostr.wine/","mention"],["p","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["p","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9","wss://@nos.lol"],["e","0cf8ffc48616b0658008776720b54e39cf1015da2505ca13386468d0ddcc8923","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["e","efa7e50dd5b21079cb016e6f71462205b9b0d71b3c6cc49551531ba2e974bb64","wss://@nos.lol","root","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9"]]}] +[11:02:51.156] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:02:51.378] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Me refería al de la nostr:nprofile1qqs8w4uth79dl594qj50gc043xtf47zvlenaysmzrpwyy7ae6fkvdpgpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgwwaehxw309ahx7uewd3hkctcfjchje que imparto con nostr:nprofile1qqsyu9me0re6pulxuzpkwnj5dkyp83dy9x2p7mpa2gtnvajxf88xepqelq32z y nostr:nprofile1qqs8lft0t45k92c78n2zfe6ccvqzhpn977cd3h8wnl579zxhw5dvr9qprpmhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0qythwumn8ghj7enjv4h8xtnwdaehgu339e3k7mf0vwfndp mañana 👇👇👇\nhttps://www.satlantis.io/events/1038 \n\n","created_at":1759417370,"id":"8759b315be42da017eb6c336ea4040f74ee8c3bdeeca267645f22403e9059253","kind":1,"pubkey":"89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9","sig":"9945043a212c0f14c27b60a289f73401efe005684bf8ba90cfcf74f7458155f5883cbf2ffeaaa9c3219897340e8f458c39c52bb0f08f7bbc4ff9434f71f8cae4","tags":[["p","77578bbf8adfd0b504a8f461f589969af84cfe67d24362185c427bb9d26cc685","wss://eden.nostr.land/","mention"],["p","4e177978f3a0f3e6e083674e546d8813c5a429941f6c3d521736764649ce6c84","","mention"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","wss://filter.nostr.wine/","mention"],["p","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["p","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9","wss://@nos.lol"],["e","0cf8ffc48616b0658008776720b54e39cf1015da2505ca13386468d0ddcc8923","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["e","efa7e50dd5b21079cb016e6f71462205b9b0d71b3c6cc49551531ba2e974bb64","wss://@nos.lol","root","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9"]]}] +[11:02:51.438] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \nhttps://images2.imgbox.com/41/b4/KjfWEPor_o.jpg \n#BeautifulLifeVibes ✨😊","created_at":1759417366,"id":"3e200bafcad56184e9cb1339b0637ba1ca7c7b4d7adb286bb50bde19271ca0fc","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"baffb7e993cd2ff2a4f3ce82fb1ecd7a35ad16ba4747e02bbc9d3dde84c5b54af156342bf823a4ba4afb8251e1a07782dc01211ed3e7d9d3ffe578d10531b1ad","tags":[]}] +[11:02:51.499] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://elfreth.house.gov/services/impact-government-shutdown \n\n\n\nhttps://blossom.primal.net/aa2640ce1d23a63ffcae52bbb7af2b9711199e376eb7d497befa0cde6105d877.png","created_at":1759417361,"id":"6fc65d47b2567f502b13dbcff06f0329dab680700e1051999bd61c5485bc618b","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"04f9e7353f1a0c2ca7dc7e9d705bb4616221ab225de79b53e295a3008950e24e0e39f7ac873c7cf5eeb415031370d9352b15b498b43ce2d75503ff5c5b9acbcf","tags":[["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://nostr-pub.wellorder.net"],["p","b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a"],["p","b7e453f6fdeb79cca1d86fbf0c4b20ebeead1de9f5067522638d03ce9ff08e8c"],["e","ad5d36988c00764f663a010c8b3c74059abf45ef137195d4fdfdda863b58b318","","reply","b7e453f6fdeb79cca1d86fbf0c4b20ebeead1de9f5067522638d03ce9ff08e8c"],["e","bb2cf84c127a30a06a09c824b4b5dca22ef8dab9ebd78fb5ae507f7a30e4a87f","wss://nostr-pub.wellorder.net","root","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["imeta","url https://blossom.primal.net/aa2640ce1d23a63ffcae52bbb7af2b9711199e376eb7d497befa0cde6105d877.png","m image/png","ox aa2640ce1d23a63ffcae52bbb7af2b9711199e376eb7d497befa0cde6105d877","dim 1080x1576"]]}] +[11:02:51.559] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That cat on the right is sat just below my neck, the other one, below my belly.","created_at":1759417360,"id":"3f007c4c272bca39743a25d33568bd1ab1f1ec95bf1a14e7e7597ab6a6c6cda5","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"1d1dee8df2048ccca1d4f71e86cc62225ec8a30869e4caede73d43b25302dc7134b4ff79e3b5003d63fa4456525baeed7dbc217dbe7985c1fc41ea1cd0dd4d15","tags":[["alt","A short note: That cat on the right is sat just below my neck, t..."],["e","4e5dd11ff9ef046204259726f202cd74d9346b479fab7d1242acf207b0b52b5f","wss://nostr.mom/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","975f2eca036796ebc39eb2cb4f2621bc011368841809472b290e44bcfbb8d23e","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","acbb34b7ed631a821385d3568c7fc58aa27f481b37be24b7004fad44d52980da","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","4c78e8e4578e30ee8c28ea8e96fa6fe29361df7b714bedfd10adf86fbf3ed84c","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","43f76d45c7b677a78aa52a17b1330aaf67a256d96b9ff5fac0cb07597ab594ea","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","513a6bdfd8a6308aac3b0c1782412e858fa7812a6203b6eef9c5c280e850aebb","wss://nostr.wine/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","3da7e27f9ae6f0e36812d2e97b74ec69e835e8ed1a211b16540496265e7490f5","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","d4476047102bacdd28a43154558add6d3c3f0ade8bc76ccc3d72d461f7a945ff","wss://nostrelites.org/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","be92e778acda96cf1e622f19fa3fec596a9e9922f1f9cf83a498bb547b7463dd","wss://nostr.mom/","","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["e","bd552efd7b6977b0db83a154a78c111bc46c54bfa0434cb059ddd5d806aa00df","wss://nostr.wine/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"]]}] +[11:02:51.620] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"More feedback needed on this:\n\nnostr:nevent1qqsvg4hajp9ysrpjxt5rc8we6at9hzvg2qnk6ugfccw7q6yl3f5dhjcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7q3qnjst6azswskk5gp3ns8r6nr8nj0qg65acu8gaa2u9yz7yszjxs9sxpqqqqqqzj8nhdy","created_at":1759417360,"id":"edcea7722c90c5df2aaaf3ed2f53aaa806a773af2af5142ddee9d4da7a51dd58","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"ad0ded89f5eb03e269f480a732be90a95d0b3e39b46c4c38dc435bd82a1cf5ef97c8d43c26b01623a4bbe2615bc5d1506f194dc84163b13993f9a4c4176c28a8","tags":[["alt","A short note: More feedback needed on this:\n\nnostr:nevent1qqsvg4..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["q","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[11:02:51.680] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I prefer to not post images of myself or family. The rest is all actually about and day to day shenanigans.. Most of it boring to the masses, occasionally something that sparks cool conversations and connections. I’m about to hit follow and learn more - nice to meet you here!","created_at":1759417355,"id":"dc740e2904603fdd7555a61d9e20b3d254074b057dd5550cf11c59ffee78efc3","kind":1,"pubkey":"0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b","sig":"d7d76efd3373549deacb175b5b1f59a0b355a034e517e0d5aab2f663444cd0ab035166ae40236520590de72e50e577a6eb0c6ba13198c2240c6381dde3d3dded","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.primal.net","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","","mention"]]}] +[11:02:51.778] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Thailand #Bitcoin merchant movement is growing nostr:naddr1qvzqqqr4gupzq04ty37x8we4m73cup72zqhkmg5t4xuag6r3ja6rhh369vwcpthdqq2nyjzntgenwm65xfr8v3t22fnx5m69x9xn2zjkz53","created_at":1759417354,"id":"fabcec98194328b089b848b74e79f64fa4b409b97ce88b0785f65fc36aca7a1e","kind":1,"pubkey":"146bda4ec6932830503ee4f8e8b626bd7b3a5784232b8240ba15c8cbff9a07cd","sig":"f97383f2461c13960c47f167ab4a0dfa526150b0f3f88e74d2f4ac233763033f8111239d1f0dd3fbc0b33b9992ac52fbbb2e36efeb1aa50778c98fb0f2f5e45b","tags":[["client","Yakihonne","31990:20986fb83e775d96d188ca5c9df10ce6d613e0eb7e5768a0f0b12b37cdac21b3:1700732875747"],["q","30023:3eab247c63bb35dfa38e07ca102f6da28ba9b9d4687197743bde3a2b1d80aeed:2HSZ37oT2FvEjRfjoE1M5"],["p","3eab247c63bb35dfa38e07ca102f6da28ba9b9d4687197743bde3a2b1d80aeed"],["t","Bitcoin"]]}] +[11:02:51.838] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"SAME😂 im not upgrading","created_at":1759417352,"id":"76dd60da22d24680d0f897d19eac25d3244bd31904631da0f3b4dd9eeabb028b","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"13736dd2308239813221e832be2eaaa98b2d6d0d0f3fb08ac398805d7b5b99804802bbf4817dabf0367c02917c5bc1c2aa3d81c37827527180b387c70fa3a789","tags":[["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","wss://nostr.mom","root"],["e","d206eb50ce4a5bb2d0e6747a1b7ff16b3089201ce48e01e845d1034b5c4a8bda","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c"]]}] +[11:02:51.899] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yes!! You just know where things are without having to look.","created_at":1759417352,"id":"d869ce7b5dfac4d3c4567a6b896d19cf531e1c36cd9df6d8ac608340082ff497","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"db3435422182d3d8c17331392b2ca1954a96576d056b72fb04980bc1f39771dd39a4e7fbe3467f4f50cf577b43ff090173f621085d2ad278f079f5c4a0e16cad","tags":[["alt","A short note: Yes!! You just know where things are without havin..."],["e","7bd1ffed81638fd1780e1b5676d3b12797a12aeb017b506e53c515361ca73fb3","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d206eb50ce4a5bb2d0e6747a1b7ff16b3089201ce48e01e845d1034b5c4a8bda","wss://premium.primal.net/","reply","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","fc18abd568f73549cb01e3b6e2406f43ad7864cc59789dbd7cbfa8a6923f978c","wss://premium.primal.net/"]]}] +[11:02:51.959] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759417350,"id":"05d8d49ba8acaa98cec7624277c247bb58db1ad4b6627d6f7109d257c4ee6a44","kind":1,"pubkey":"91aeab23b5664edaa57dbe00b041ccb50544f89d7d956345bbd78b7dbaa48660","sig":"54f0629893a9b672dbc9cb4e70f1bf1911bb08ecff8d31effc99754fe50485867a603772e45b10b6108d1d0ed4db1a6bf4702615052660a835a968ad5214eb9d","tags":[["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://ditto.pub/relay","root","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd"],["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://ditto.pub/relay","reply","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","wss://ditto.pub/relay"],["client","Ditto","31990:15b68d319a088a9b0c6853d2232aff0d69c8c58f0dccceabfb9a82bd4fd19c58:ditto","wss://ditto.pub/relay"]]}] +[11:02:52.020] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:02:56.302] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"[番外編18]ゴーストフィクサーズ\nhttps://shonenjumpplus.com/episode/17107094910795721602","created_at":1759417374,"id":"463ea231458d8f6fc82a0ea17ff6b311c8ec4ed2198d3d52f94eeeafa825dbba","kind":1,"pubkey":"df3935246fa62b4bb0eb906bc93e3a67fb915e7d27e45e1fa84c1fee504b9228","sig":"65e9bc04bca3f45bc67d0ce1a2fabc9ed4d57cd5be3851455781deaa2354037292069deb2fd4cc6c7c16ed4fdbed8d947232a0cf1b021f5945bde001c338c538","tags":[["r","https://shonenjumpplus.com/episode/17107094910795721602"],["proxy","https://shonenjumpplus.com/rss/series/17106567254627040784#https://shonenjumpplus.com/episode/17107094910795721602","rss"]]}] +[11:02:57.166] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"垢消ã—ã¦ãªã„コレ","created_at":1759417376,"id":"6fa1103dbb25bff45aa52f56cd60a4be3b0990924432e3711bfeaf03eb091d22","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"4a22bf78add91a98a107af1ee8f5d9ab1f5968ff93cf2afe96aa8da8c5c360d504a900e7742ede7b5f99b1f5553dbfb1ff4ff8a0d296e92bfeeed8556fb0034d","tags":[]}] +[11:03:06.474] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Quite a bit of damage from the two hurricanes off the coast here on the Outerbanks of North Carolina. Before you say anything, these houses were not built in the water. Most were built 40 to 50 years ago and were quite a way away from the ocean. And insurance wont allow you to dismantle the house until after it crashes into the ocean.\n\n#hurricane #storms #outerbanks #obx #obxlife https://image.nostr.build/441db360335c616bb2a04a518b9b5de55be5bedaa7c9cc8cd5e00cd196ede62e.jpg","created_at":1759417386,"id":"d9ddf666db927a24fd90e7fd10d34a5495c9aa4df85b6cd7bd9f47c2fc041814","kind":1,"pubkey":"6c6c253fe26a5b2abf440124e35dcaa39e891cd28274431ba49da5c11d89747d","sig":"e7299e94049fa8471dbe15ff6fda4775739718df97c2c5bbc7f203e236f5d0b5fe80b4c472c1438e72db3646955bf558dbcd2fa1148aa5c02e9084be0a9f6e75","tags":[["t","hurricane"],["t","storms"],["t","outerbanks"],["t","obx"],["t","obxlife"]]}] +[11:03:07.199] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can't expect to call a witch's name and see nothing magical. 🤣🤣🤣\nDinner is served!\nhttps://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg\n#nsfw\nnostr:nevent1qqsyya27dmkjfhwk3n6dn9c3m9ddslawtp9erd6jgfp830zut3jwtxqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczypdzvxnpxyv5dkfjdtz4rx0yjs4wp5g3pp44cgdgs4c983pwh4zgqqcyqqqqqqgtzhjpx","created_at":1759417387,"id":"051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","kind":1,"pubkey":"03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","sig":"905fd0d8f7657ac409b3ffe1a582080bff90f268f07fbabd27961a891060ce3202abd16ba7880d9efcd02cd21f1aae8521b42d13929c37dd87dd2e1a39b2b1bb","tags":[["alt","A short note: You can't expect to call a witch's name and see no..."],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["t","nsfw"],["r","https://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg"],["q","42755e6eed24ddd68cf4d99711d95ad87fae584b91b752424278bc5c5c64e598","wss://relay.nostr.band/","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"]]}] +[11:03:11.458] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I often wonder if they are training the models to extend the converstion into using more tokens than necesaary. Why give you the answer for $1 when they can stretch it out to cost $5.\n\nI feel like I notice a trend of side tracking and an odd lack of problem solving when the solutions come two or three prompts later. ","created_at":1759417391,"id":"9e6d9ebc06eeae00b5a7af2e912eae23a772debf2942bb5749dea573b1142a36","kind":1,"pubkey":"edb470271297ac5a61f277f3cd14de54c67eb5ccd20ef0d9df29be18685bb004","sig":"877d76e93cd3ed39b7d9ab212bdd628e557682343f8cce1d44c3e2dbc5e385a1877fe003e26e1234c8032d84e1faef14d7562d902243ef2f586ce866475eede6","tags":[["alt","A short note: I often wonder if they are training the models to ..."],["e","8f95c49f98b00c52518a1fe5c2c658f9a214c4c429776de4c071d6b4a1bde301","wss://f7z.io/","root","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52","wss://relay.damus.io/"]]}] +[11:03:11.972] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã‚ã£ã½ã„ã®ã¯ã„ã‚‹","created_at":1759417391,"id":"58c3e9cf89700e277f1094b1f5dd83439c768d99fb7e0aad3cd6f89101377891","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b265dec276d2141fba14ea4afb6c680743b7bfe9b9b67e1255a8b0a2432ca82f568827a27aa1106d45048e2f5603fc33f2f5e538be65c8ffb4587cb8712045ea","tags":[]}] +[11:03:12.204] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:03:12.314] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:03:12.354] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I use nTrends.app to catch up on notes I missed (I made this) but other than that I don’t really use any tools. I still only sign with an extension.","created_at":1759417391,"id":"f2076b3d7c2bb07ca4dd708d0a8d9f5c7d567928e7d5ba906575440d4a44049a","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"df4800388122f74398048635ae7d594a8925e4853baa80c233da6cba37aba05934549d8a132520a1d742c7a6712a13a3e4436cf3aef54d482a53374b39446345","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","","root"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:03:12.364] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:03:12.425] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:03:15.104] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"was my family here first\n\nare these new neighbors\n\nyes\n\ndo i own this town is this a closed town no","created_at":1759417394,"id":"37a974f684be3fdee2da20be4dd687e04b7f638dc9fd6b76d1420e866c89f9df","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"043d9de1e530cbc46b0c083941548bfb83487cecb9308818659427f3630d35c8525cda61de59c5f99cc2afa20330ab5824141d00f55163d413fc0b9aff7329e6","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","1bc40405f51d83b514f61ec81802e0afe60a656d310eff1ac41f3a14c251bc24","","reply"]]}] +[11:03:21.143] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:03:21.294] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"was my family here first\n\nare these new neighbors\n\nyes\n\ndo i own this town is this a closed town no","created_at":1759417394,"id":"37a974f684be3fdee2da20be4dd687e04b7f638dc9fd6b76d1420e866c89f9df","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"043d9de1e530cbc46b0c083941548bfb83487cecb9308818659427f3630d35c8525cda61de59c5f99cc2afa20330ab5824141d00f55163d413fc0b9aff7329e6","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","1bc40405f51d83b514f61ec81802e0afe60a656d310eff1ac41f3a14c251bc24","","reply"]]}] +[11:03:21.354] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I use nTrends.app to catch up on notes I missed (I made this) but other than that I don’t really use any tools. I still only sign with an extension.","created_at":1759417391,"id":"f2076b3d7c2bb07ca4dd708d0a8d9f5c7d567928e7d5ba906575440d4a44049a","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"df4800388122f74398048635ae7d594a8925e4853baa80c233da6cba37aba05934549d8a132520a1d742c7a6712a13a3e4436cf3aef54d482a53374b39446345","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","","root"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:03:21.415] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã‚ã£ã½ã„ã®ã¯ã„ã‚‹","created_at":1759417391,"id":"58c3e9cf89700e277f1094b1f5dd83439c768d99fb7e0aad3cd6f89101377891","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b265dec276d2141fba14ea4afb6c680743b7bfe9b9b67e1255a8b0a2432ca82f568827a27aa1106d45048e2f5603fc33f2f5e538be65c8ffb4587cb8712045ea","tags":[]}] +[11:03:21.475] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I often wonder if they are training the models to extend the converstion into using more tokens than necesaary. Why give you the answer for $1 when they can stretch it out to cost $5.\n\nI feel like I notice a trend of side tracking and an odd lack of problem solving when the solutions come two or three prompts later. ","created_at":1759417391,"id":"9e6d9ebc06eeae00b5a7af2e912eae23a772debf2942bb5749dea573b1142a36","kind":1,"pubkey":"edb470271297ac5a61f277f3cd14de54c67eb5ccd20ef0d9df29be18685bb004","sig":"877d76e93cd3ed39b7d9ab212bdd628e557682343f8cce1d44c3e2dbc5e385a1877fe003e26e1234c8032d84e1faef14d7562d902243ef2f586ce866475eede6","tags":[["alt","A short note: I often wonder if they are training the models to ..."],["e","8f95c49f98b00c52518a1fe5c2c658f9a214c4c429776de4c071d6b4a1bde301","wss://f7z.io/","root","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52","wss://relay.damus.io/"]]}] +[11:03:21.536] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You can't expect to call a witch's name and see nothing magical. 🤣🤣🤣\nDinner is served!\nhttps://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg\n#nsfw\nnostr:nevent1qqsyya27dmkjfhwk3n6dn9c3m9ddslawtp9erd6jgfp830zut3jwtxqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczypdzvxnpxyv5dkfjdtz4rx0yjs4wp5g3pp44cgdgs4c983pwh4zgqqcyqqqqqqgtzhjpx","created_at":1759417387,"id":"051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","kind":1,"pubkey":"03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","sig":"905fd0d8f7657ac409b3ffe1a582080bff90f268f07fbabd27961a891060ce3202abd16ba7880d9efcd02cd21f1aae8521b42d13929c37dd87dd2e1a39b2b1bb","tags":[["alt","A short note: You can't expect to call a witch's name and see no..."],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["t","nsfw"],["r","https://cdn.azzamo.net/02268154a4bc9afdebcf9978ba89cc74fbf389c967b71f0c97d02c89ea468508.jpeg"],["q","42755e6eed24ddd68cf4d99711d95ad87fae584b91b752424278bc5c5c64e598","wss://relay.nostr.band/","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"]]}] +[11:03:21.745] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Quite a bit of damage from the two hurricanes off the coast here on the Outerbanks of North Carolina. Before you say anything, these houses were not built in the water. Most were built 40 to 50 years ago and were quite a way away from the ocean. And insurance wont allow you to dismantle the house until after it crashes into the ocean.\n\n#hurricane #storms #outerbanks #obx #obxlife https://image.nostr.build/441db360335c616bb2a04a518b9b5de55be5bedaa7c9cc8cd5e00cd196ede62e.jpg","created_at":1759417386,"id":"d9ddf666db927a24fd90e7fd10d34a5495c9aa4df85b6cd7bd9f47c2fc041814","kind":1,"pubkey":"6c6c253fe26a5b2abf440124e35dcaa39e891cd28274431ba49da5c11d89747d","sig":"e7299e94049fa8471dbe15ff6fda4775739718df97c2c5bbc7f203e236f5d0b5fe80b4c472c1438e72db3646955bf558dbcd2fa1148aa5c02e9084be0a9f6e75","tags":[["t","hurricane"],["t","storms"],["t","outerbanks"],["t","obx"],["t","obxlife"]]}] +[11:03:21.805] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"垢消ã—ã¦ãªã„コレ","created_at":1759417376,"id":"6fa1103dbb25bff45aa52f56cd60a4be3b0990924432e3711bfeaf03eb091d22","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"4a22bf78add91a98a107af1ee8f5d9ab1f5968ff93cf2afe96aa8da8c5c360d504a900e7742ede7b5f99b1f5553dbfb1ff4ff8a0d296e92bfeeed8556fb0034d","tags":[]}] +[11:03:21.866] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"[番外編18]ゴーストフィクサーズ\nhttps://shonenjumpplus.com/episode/17107094910795721602","created_at":1759417374,"id":"463ea231458d8f6fc82a0ea17ff6b311c8ec4ed2198d3d52f94eeeafa825dbba","kind":1,"pubkey":"df3935246fa62b4bb0eb906bc93e3a67fb915e7d27e45e1fa84c1fee504b9228","sig":"65e9bc04bca3f45bc67d0ce1a2fabc9ed4d57cd5be3851455781deaa2354037292069deb2fd4cc6c7c16ed4fdbed8d947232a0cf1b021f5945bde001c338c538","tags":[["r","https://shonenjumpplus.com/episode/17107094910795721602"],["proxy","https://shonenjumpplus.com/rss/series/17106567254627040784#https://shonenjumpplus.com/episode/17107094910795721602","rss"]]}] +[11:03:21.926] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Me refería al de la nostr:nprofile1qqs8w4uth79dl594qj50gc043xtf47zvlenaysmzrpwyy7ae6fkvdpgpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgwwaehxw309ahx7uewd3hkctcfjchje que imparto con nostr:nprofile1qqsyu9me0re6pulxuzpkwnj5dkyp83dy9x2p7mpa2gtnvajxf88xepqelq32z y nostr:nprofile1qqs8lft0t45k92c78n2zfe6ccvqzhpn977cd3h8wnl579zxhw5dvr9qprpmhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0qythwumn8ghj7enjv4h8xtnwdaehgu339e3k7mf0vwfndp mañana 👇👇👇\nhttps://www.satlantis.io/events/1038 \n\n","created_at":1759417370,"id":"8759b315be42da017eb6c336ea4040f74ee8c3bdeeca267645f22403e9059253","kind":1,"pubkey":"89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9","sig":"9945043a212c0f14c27b60a289f73401efe005684bf8ba90cfcf74f7458155f5883cbf2ffeaaa9c3219897340e8f458c39c52bb0f08f7bbc4ff9434f71f8cae4","tags":[["p","77578bbf8adfd0b504a8f461f589969af84cfe67d24362185c427bb9d26cc685","wss://eden.nostr.land/","mention"],["p","4e177978f3a0f3e6e083674e546d8813c5a429941f6c3d521736764649ce6c84","","mention"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","wss://filter.nostr.wine/","mention"],["p","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["p","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9","wss://@nos.lol"],["e","0cf8ffc48616b0658008776720b54e39cf1015da2505ca13386468d0ddcc8923","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["e","efa7e50dd5b21079cb016e6f71462205b9b0d71b3c6cc49551531ba2e974bb64","wss://@nos.lol","root","89ff65862a39a40642b41121070a46e5506950fc2077f5d4fa99af9b45a321d9"]]}] +[11:03:21.987] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \nhttps://images2.imgbox.com/41/b4/KjfWEPor_o.jpg \n#BeautifulLifeVibes ✨😊","created_at":1759417366,"id":"3e200bafcad56184e9cb1339b0637ba1ca7c7b4d7adb286bb50bde19271ca0fc","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"baffb7e993cd2ff2a4f3ce82fb1ecd7a35ad16ba4747e02bbc9d3dde84c5b54af156342bf823a4ba4afb8251e1a07782dc01211ed3e7d9d3ffe578d10531b1ad","tags":[]}] +[11:03:22.047] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:03:22.108] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔔 Po útoku pÅ™ed synagogou v Manchesteru jsou tÅ™i mrtví vÄetnÄ› pachatele: \n\nBritský premiér Keir Starmer uvedl, že k synagogám po celé zemi jsou nasazovány policejní síly. \nhttps://zpravy.aktualne.cz/zahranici/ctyri-zraneni-pri-utoku-pred-synagogou-v-manchesteru-podezre/r~0b26d6929f7e11f080bfac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759417382,"id":"9d142dcdd7da7cd194d012f8cfe7cb85a258b9fa2f8d797b1faaaa03d1e9bd54","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"dde51ecdf7c10e67e758a42667aaade76a36665632b75b4ce37297b434689f8a2ba7667970bc0433454d3ff56d82049bc68ab036aeb7b352316783933926566b","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:03:22.168] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This","created_at":1759417401,"id":"ab578275e412c2b0765ed3e04dbd75aa6b3da339b09475cf0fbb8fa6d282cb5c","kind":1,"pubkey":"07011cf08e51316703db24beac6d548bb134f8b3b415a34cdd076c223c8ad03b","sig":"062228e60eb2fa87f78455bcf1d6ccf17f1d14818710ee4d6944c6e5e215e1ae1b1ae40bb2059178b2a2fc9450c86f332c223c39589995cf3c67929eb2831d0a","tags":[["e","610ab12d17fd761b893b8ead452ccb0fb7925062c15ce1c1697aa305770cebbf","wss://feeds.nostr.band/ru","root"],["e","7f41b6f42ba051be59bbb68f8eacd2cde06e782f8fc0652720209a6198f718f2","wss://nostr.einundzwanzig.space","reply"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106","","mention"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6","","mention"]]}] +[11:03:25.772] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \n\n\n\nhttps://blossom.primal.net/c2f2ecd162ad90b4da64bcf0d04e38e500a7f1ac81a667931ff5b01325147a96.jpg","created_at":1759417404,"id":"653d11f7874a3ec01443ef58b6dbe3aee84f4998dcf6ade2bd2667386977e2a3","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"54d8784694774a736e685cdee5a3961365b045a3af28dbbcfc758e955eefb680d693612032158a4fc2f4ea5fea6d968ead5de76b42120f51dff39e9a583b92b9","tags":[["imeta","url https://blossom.primal.net/c2f2ecd162ad90b4da64bcf0d04e38e500a7f1ac81a667931ff5b01325147a96.jpg","m image/jpeg","ox c2f2ecd162ad90b4da64bcf0d04e38e500a7f1ac81a667931ff5b01325147a96","dim 487x1280"]]}] +[11:03:28.835] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://image.nostr.build/8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432.png\n\nhttps://image.nostr.build/7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f.png\n\nIf people remember the IoT DVM proposal that was made a while ago. Well, I've finally implemented it with real devices. \n\nI have a pretty good arduino project here https://github.com/blackcoffeexbt/nostr-iot-dvm-device\n\nand an IoT dashboard for LNbits available here https://github.com/blackcoffeexbt/nostriotdashboard. This can be tested by adding the extension manifest to your LNbits' extension settings Source URL list ( https://raw.githubusercontent.com/blackcoffeexbt/nostriotdashboard/refs/heads/main/manifest.json )\n\nI'll move these to the LNbits org on Github when they're a little more solid. Although they're pretty good now.\n\nThe dashboard has an explore page where you can find Nostr IoT devices that have advertised their capabilities with DVM Service Provider advertisements.\n\nPaid services are supported using LNbits as the wallet backend via bolt11 invoices. I will add event zapping support soon enough.\n\nI'll get a video together shortly.\n\nI'll also plug the devices in within the next hour or so so you if you like, you can send me money to turn a light on and off. I'll be on the road for an hourish now.\n\nThis note is being signed by the new Nsec Remote Signer which is also for sale now - https://shop.lnbits.com/product/nsec-remote-nostr-signer\n\nCrazy times!","created_at":1759417406,"id":"8100ea11cb212bf933f1601eb22ad924deea591a9bc754492293a36006283f38","kind":1,"pubkey":"683211bd155c7b764e4b99ba263a151d81209be7a566a2bb1971dc1bbd3b715e","sig":"fc56197eb17dcaa36fc1d30bdf8e3de9cc9b10b8d48758c694cd3affdab7eab818a2eaf1a4607b9fd43c2da6e94334d375a5fba1f7c28ad603e9ec61e444216e","tags":[["imeta","url https://image.nostr.build/8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432.png","ox 8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432","x f313cacbffe6725d7abf55b63c193d0fcffc2f5fa5fa805933c0cfd08facff56","m image/png","dim 1360x956","bh LPB3a1jba{R%~qofWBj[_MofWAoM","blurhash LPB3a1jba{R%~qofWBj[_MofWAoM","thumb https://image.nostr.build/thumb/8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432.png"],["imeta","url https://image.nostr.build/7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f.png","ox 7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f","x 380414b79ed10674348947aef5939633e137c85cffa8045d5894a3724cc6a36e","m image/png","dim 1360x956","bh LPA]?Rf6j@R%~qofWBj[_MofWBoM","blurhash LPA]?Rf6j@R%~qofWBj[_MofWBoM","thumb https://image.nostr.build/thumb/7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f.png"]]}] +[11:03:30.715] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"还是能看到一点模糊,算力ä¸å¤Ÿï¼Ÿ","created_at":1759417409,"id":"76b5ff0e0a707cce4d7ee13d042a71543f1387607b9ec1553882fdd13485eb37","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"668b7aa32a7af5e9f9d2ef77a22bc38c797bd68c084ebe8538f6e0291044218fbce95dc29fd6a49388b52848d7235f40917a5c883b1df9c721e31335ce1a13d7","tags":[["e","ef5b5f649e9eb336f0cf14db41086011b1f2184e3984d2608bc6f9964032ae85","","root"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"]]}] +[11:03:34.709] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I couldn’t agree more! I think this is such an under-appreciated truth that we all should consider. \n\nShameless plug, but for those that are interested. I have written a newly published book about this: The Ancient Way of the Mind. ","created_at":1759417414,"id":"7a88efc33b1d603217b65f9696ef8483d249e22ffd86d33eae6bcf917303a363","kind":1,"pubkey":"554ab6fed675985d6b99b79ad7b784ff8ca4a5b02778812e1968eee0c6cbc27e","sig":"99f83e5960ee6de8ccf6aa06eb273c44b9418e9eacecad67942d4cb9d84bd440c18bfcc56aa1ad0572484999f7e1ff07372584b112b37f531717d6d721de36db","tags":[["e","684535bd91eb12fbba3e97d6f75991922e587651a7b7d5c27f4707af7aa640e4","wss://relay.primal.net","root"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b","","mention"]]}] +[11:03:38.567] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Put me in coach","created_at":1759417417,"id":"e8eb7f2c9fc4c28dc1c7f2006d18d614aae8a18f7f7d70abcb941dcc953c81d0","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"4d3e1d4543f9a147f0c353dac6b3304fa34ae8291ebdfdc7412547f42e975b36454522cd695cc41a61f442759f97c5196a96c6792fa5ed25ed4e5dbed6db653c","tags":[["e","3b9593448fa2bdc8340de9a6153a22cc93e2ede733024985ddcf40e593bde78a","","root"],["e","1e97103a1a41ddfdb0d7b42f8ab5798bfed78c085928ad8cf737e34ca6bfbe5d","","reply"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"]]}] +[11:03:42.111] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:03:42.222] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:03:42.282] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:03:42.343] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:03:45.568] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂","created_at":1759417425,"id":"b7edfee69757eeedcd4183f94d83843fb82b2c18a5e594323665d3b34e7f1b4f","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"2ecf34eff1a788410e14bbdec58074b5f3d6df95f64f8bc4581c87b18a28027a96695f7c9910e5b3fc1fc333baec8f26805bee1b1c4bfd7adbaf8f9e38a539d8","tags":[["alt","A short note: 😂"],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://theforest.nostr1.com/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["e","7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","wss://theforest.nostr1.com/","","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["e","93bd8d8b5873d8d38682f1d5e1e1e3532d0846495dae38efa5ecb99d29c346c5","wss://theforest.nostr1.com/","reply","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"]]}] +[11:03:45.972] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Isn't bitcoin a self hostable l1? \n\n","created_at":1759417427,"id":"6b95490a72ee582971c8e5daeb849c5a03643f58f4082018bb319fdf523b7399","kind":1,"pubkey":"aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253","sig":"0198d58a8daeb87568da6bc275a98739ddc3a07e93ec800025d55349983beb68dd85d81b756984b551d7dfce4593a42062a84f047509b6f6fb8492fbe91360d3","tags":[["p","8d29657e79b9b8843a865094cd8efff117150dac371eb6e42b11fde6ebb55e48","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","efdc32d6d74182abf98224ce05b2b9c66baecf1e1a35716bfbd7d1e2be334843","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","8d29657e79b9b8843a865094cd8efff117150dac371eb6e42b11fde6ebb55e48"]]}] +[11:03:47.914] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"マルã¡ã‚ƒã‚“ã®ä¾›çµ¦ãŒé€”çµ¶ãˆã¦æ­»ã¬","created_at":1759417427,"id":"94b9c75ce9b43d744e702e075e682f3852688d1d51a23651f48cbfdf03782ffd","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"c2c4488b56cc843f10f1926d0ecef60e6a7707c32197acc2bbed989ac514660d696e405de2602100feeae5bd877593ba9cc1d402e0fa6be438359c4f3e2197c5","tags":[]}] +[11:03:48.785] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Its been a productive day. I've created two new github repos and another npm package :)","created_at":1759417425,"id":"ce950ec7f98c40cd70cba5179c082fa7d023628de09591ffb1ee98791408fe99","kind":1,"pubkey":"266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5","sig":"1c06f8a09d0b9c0d92ed813b46a90b2cf7b839a54854eda3dfc4edd281ceae1f0bd42a6d6b7f24e6756994643d25ae1437f053c06351a8f64f7a89abd9216f59","tags":[["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:03:51.170] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:03:51.329] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"マルã¡ã‚ƒã‚“ã®ä¾›çµ¦ãŒé€”çµ¶ãˆã¦æ­»ã¬","created_at":1759417427,"id":"94b9c75ce9b43d744e702e075e682f3852688d1d51a23651f48cbfdf03782ffd","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"c2c4488b56cc843f10f1926d0ecef60e6a7707c32197acc2bbed989ac514660d696e405de2602100feeae5bd877593ba9cc1d402e0fa6be438359c4f3e2197c5","tags":[]}] +[11:03:51.479] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Isn't bitcoin a self hostable l1? \n\n","created_at":1759417427,"id":"6b95490a72ee582971c8e5daeb849c5a03643f58f4082018bb319fdf523b7399","kind":1,"pubkey":"aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253","sig":"0198d58a8daeb87568da6bc275a98739ddc3a07e93ec800025d55349983beb68dd85d81b756984b551d7dfce4593a42062a84f047509b6f6fb8492fbe91360d3","tags":[["p","8d29657e79b9b8843a865094cd8efff117150dac371eb6e42b11fde6ebb55e48","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","efdc32d6d74182abf98224ce05b2b9c66baecf1e1a35716bfbd7d1e2be334843","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","8d29657e79b9b8843a865094cd8efff117150dac371eb6e42b11fde6ebb55e48"]]}] +[11:03:51.540] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Its been a productive day. I've created two new github repos and another npm package :)","created_at":1759417425,"id":"ce950ec7f98c40cd70cba5179c082fa7d023628de09591ffb1ee98791408fe99","kind":1,"pubkey":"266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5","sig":"1c06f8a09d0b9c0d92ed813b46a90b2cf7b839a54854eda3dfc4edd281ceae1f0bd42a6d6b7f24e6756994643d25ae1437f053c06351a8f64f7a89abd9216f59","tags":[["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:03:51.600] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂","created_at":1759417425,"id":"b7edfee69757eeedcd4183f94d83843fb82b2c18a5e594323665d3b34e7f1b4f","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"2ecf34eff1a788410e14bbdec58074b5f3d6df95f64f8bc4581c87b18a28027a96695f7c9910e5b3fc1fc333baec8f26805bee1b1c4bfd7adbaf8f9e38a539d8","tags":[["alt","A short note: 😂"],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://theforest.nostr1.com/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["e","7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","wss://theforest.nostr1.com/","","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["e","93bd8d8b5873d8d38682f1d5e1e1e3532d0846495dae38efa5ecb99d29c346c5","wss://theforest.nostr1.com/","reply","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"]]}] +[11:03:51.661] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Put me in coach","created_at":1759417417,"id":"e8eb7f2c9fc4c28dc1c7f2006d18d614aae8a18f7f7d70abcb941dcc953c81d0","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"4d3e1d4543f9a147f0c353dac6b3304fa34ae8291ebdfdc7412547f42e975b36454522cd695cc41a61f442759f97c5196a96c6792fa5ed25ed4e5dbed6db653c","tags":[["e","3b9593448fa2bdc8340de9a6153a22cc93e2ede733024985ddcf40e593bde78a","","root"],["e","1e97103a1a41ddfdb0d7b42f8ab5798bfed78c085928ad8cf737e34ca6bfbe5d","","reply"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"]]}] +[11:03:51.722] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I couldn’t agree more! I think this is such an under-appreciated truth that we all should consider. \n\nShameless plug, but for those that are interested. I have written a newly published book about this: The Ancient Way of the Mind. ","created_at":1759417414,"id":"7a88efc33b1d603217b65f9696ef8483d249e22ffd86d33eae6bcf917303a363","kind":1,"pubkey":"554ab6fed675985d6b99b79ad7b784ff8ca4a5b02778812e1968eee0c6cbc27e","sig":"99f83e5960ee6de8ccf6aa06eb273c44b9418e9eacecad67942d4cb9d84bd440c18bfcc56aa1ad0572484999f7e1ff07372584b112b37f531717d6d721de36db","tags":[["e","684535bd91eb12fbba3e97d6f75991922e587651a7b7d5c27f4707af7aa640e4","wss://relay.primal.net","root"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b","","mention"]]}] +[11:03:51.782] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"还是能看到一点模糊,算力ä¸å¤Ÿï¼Ÿ","created_at":1759417409,"id":"76b5ff0e0a707cce4d7ee13d042a71543f1387607b9ec1553882fdd13485eb37","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"668b7aa32a7af5e9f9d2ef77a22bc38c797bd68c084ebe8538f6e0291044218fbce95dc29fd6a49388b52848d7235f40917a5c883b1df9c721e31335ce1a13d7","tags":[["e","ef5b5f649e9eb336f0cf14db41086011b1f2184e3984d2608bc6f9964032ae85","","root"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"]]}] +[11:03:51.843] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://image.nostr.build/8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432.png\n\nhttps://image.nostr.build/7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f.png\n\nIf people remember the IoT DVM proposal that was made a while ago. Well, I've finally implemented it with real devices. \n\nI have a pretty good arduino project here https://github.com/blackcoffeexbt/nostr-iot-dvm-device\n\nand an IoT dashboard for LNbits available here https://github.com/blackcoffeexbt/nostriotdashboard. This can be tested by adding the extension manifest to your LNbits' extension settings Source URL list ( https://raw.githubusercontent.com/blackcoffeexbt/nostriotdashboard/refs/heads/main/manifest.json )\n\nI'll move these to the LNbits org on Github when they're a little more solid. Although they're pretty good now.\n\nThe dashboard has an explore page where you can find Nostr IoT devices that have advertised their capabilities with DVM Service Provider advertisements.\n\nPaid services are supported using LNbits as the wallet backend via bolt11 invoices. I will add event zapping support soon enough.\n\nI'll get a video together shortly.\n\nI'll also plug the devices in within the next hour or so so you if you like, you can send me money to turn a light on and off. I'll be on the road for an hourish now.\n\nThis note is being signed by the new Nsec Remote Signer which is also for sale now - https://shop.lnbits.com/product/nsec-remote-nostr-signer\n\nCrazy times!","created_at":1759417406,"id":"8100ea11cb212bf933f1601eb22ad924deea591a9bc754492293a36006283f38","kind":1,"pubkey":"683211bd155c7b764e4b99ba263a151d81209be7a566a2bb1971dc1bbd3b715e","sig":"fc56197eb17dcaa36fc1d30bdf8e3de9cc9b10b8d48758c694cd3affdab7eab818a2eaf1a4607b9fd43c2da6e94334d375a5fba1f7c28ad603e9ec61e444216e","tags":[["imeta","url https://image.nostr.build/8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432.png","ox 8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432","x f313cacbffe6725d7abf55b63c193d0fcffc2f5fa5fa805933c0cfd08facff56","m image/png","dim 1360x956","bh LPB3a1jba{R%~qofWBj[_MofWAoM","blurhash LPB3a1jba{R%~qofWBj[_MofWAoM","thumb https://image.nostr.build/thumb/8a931d2ab9ddc4fe4ba014f03d4bf0c689ce69a48ea939be7d642c4408d7d432.png"],["imeta","url https://image.nostr.build/7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f.png","ox 7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f","x 380414b79ed10674348947aef5939633e137c85cffa8045d5894a3724cc6a36e","m image/png","dim 1360x956","bh LPA]?Rf6j@R%~qofWBj[_MofWBoM","blurhash LPA]?Rf6j@R%~qofWBj[_MofWBoM","thumb https://image.nostr.build/thumb/7727306a393813d92edf9de3031f41e56cc3574de723faad5b40ad85f425e43f.png"]]}] +[11:03:51.903] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":" \n\n\n\nhttps://blossom.primal.net/c2f2ecd162ad90b4da64bcf0d04e38e500a7f1ac81a667931ff5b01325147a96.jpg","created_at":1759417404,"id":"653d11f7874a3ec01443ef58b6dbe3aee84f4998dcf6ade2bd2667386977e2a3","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"54d8784694774a736e685cdee5a3961365b045a3af28dbbcfc758e955eefb680d693612032158a4fc2f4ea5fea6d968ead5de76b42120f51dff39e9a583b92b9","tags":[["imeta","url https://blossom.primal.net/c2f2ecd162ad90b4da64bcf0d04e38e500a7f1ac81a667931ff5b01325147a96.jpg","m image/jpeg","ox c2f2ecd162ad90b4da64bcf0d04e38e500a7f1ac81a667931ff5b01325147a96","dim 487x1280"]]}] +[11:03:51.964] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This","created_at":1759417401,"id":"ab578275e412c2b0765ed3e04dbd75aa6b3da339b09475cf0fbb8fa6d282cb5c","kind":1,"pubkey":"07011cf08e51316703db24beac6d548bb134f8b3b415a34cdd076c223c8ad03b","sig":"062228e60eb2fa87f78455bcf1d6ccf17f1d14818710ee4d6944c6e5e215e1ae1b1ae40bb2059178b2a2fc9450c86f332c223c39589995cf3c67929eb2831d0a","tags":[["e","610ab12d17fd761b893b8ead452ccb0fb7925062c15ce1c1697aa305770cebbf","wss://feeds.nostr.band/ru","root"],["e","7f41b6f42ba051be59bbb68f8eacd2cde06e782f8fc0652720209a6198f718f2","wss://nostr.einundzwanzig.space","reply"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106","","mention"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6","","mention"]]}] +[11:03:52.024] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:04:09.745] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"are the old neighbors better than the new ones?\n\nyes.","created_at":1759417449,"id":"97879b6d139db1e8323890a987ff129f5991279bdc91e4a67a4f20ee8146442d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"4a0e926393d600eb3725e49aee8104bda41bfb1f8c73aebe205c2924d26d5620725899a957b1212157c99b626295a6f9cf757eae9182b94e790dc9b6e3088d63","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","37a974f684be3fdee2da20be4dd687e04b7f638dc9fd6b76d1420e866c89f9df","","reply"]]}] +[11:04:12.181] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:04:12.292] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:04:12.353] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:04:12.414] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:04:13.741] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãªã‚“ã‹é¼»è©°ã¾ã£ã¦ã‚‹ä»¥å¤–ã‚ã‹ã‚‰ã­ã‡","created_at":1759417454,"id":"5baed720150ce780985fe7235168f9ffa6fbe1d678dcabeb159eab8494e14a39","kind":1,"pubkey":"59317d32e89cbd5fb7e5f8e16bbee29e35f12b4bc6561c9a691cc068af0dbfbd","sig":"e0719171ed6f54df8411e946cd46b780f69ac6d02cfa548c80b59b559913e9d3bd69b7d85e99945429ef12ce14d4a7da4a28da6b08d3d8035f71b51b9b5a24d7","tags":[["e","c012097d2fd5dfa1d0e3188e8d9c014d1a00c0e04c28e31daa7e66a782781350","","root"],["p","6369fb82bec54226bf09bb365b6f0d71b16c41f56e7edfd4f97de23f9c3281da"]]}] +[11:04:15.684] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Blonde and coppery colored and I loved them 🥹","created_at":1759417455,"id":"0277249c92b1e8774ca8ccd195b1b5d0b96b8d6e2f766c9ac287219517dfe295","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"3461428ebe714c29fcad22dd6e248ae0e6087d8bdda542ba4f43bf8ccddd83c1b03ee6df6d2ecad03eb27c4037dd5d272e3c6edf5f469d1617832a88fc30911a","tags":[["alt","A short note: Blonde and coppery colored and I loved them 🥹"],["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["e","20a74ba1431dfb1b82ddd64637f26c26a0a0431dfdbf6afeb89c178958bcb236","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99db1f1eab50b7ee284663bfde002ca2e78dd2aec43b2425dd22d899600df06a","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[11:04:16.188] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãƒãƒ£ãƒãƒªãƒ³ã‚°ã€€ãƒ†ã‚¤ãƒ«ã‚ºã‚ªãƒ–","created_at":1759417455,"id":"5f38b22c8b4d89287de75bc42ce613a544c03cc78496840653a3731f1404e966","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"9a46e70c7efb573c718834875ffb5919a50b9a0b83f252ba17397398185b49ffd25c573ee24ca26742d24df44a7e3327c4f09cc717f893c2bb6572b4f508be7b","tags":[]}] +[11:04:19.017] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"急ã«TLã¿ã‚‹ã¨ã¿ã‚“ãªãªã‚“ã®è©±ã—ã—ã¦ã‚‹ã®ã‹åˆ†ã‹ã‚‰ã‚“ã‹ã‚‰æ¯Žå›žè§£èª¬ã—ã¦æ¬²ã—ã„","created_at":1759417460,"id":"836d629bc1f58119848e57ea79f8185f26822fc9a6fd05e71f00b6eae6411004","kind":1,"pubkey":"26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958","sig":"6f5c5164852812c5a83f22376c04b20b5c3a5b4f2a63cd2b1ed0b435d2c07e024bea1c08f7dc94a489c5f8036c879aeb734e035dcff9439e79fdc29ae0726380","tags":[["alt","A short note: 急ã«TLã¿ã‚‹ã¨ã¿ã‚“ãªãªã‚“ã®è©±ã—ã—ã¦ã‚‹ã®ã‹åˆ†ã‹ã‚‰ã‚“ã‹ã‚‰æ¯Žå›žè§£èª¬ã—ã¦æ¬²ã—ã„"]]}] +[11:04:21.181] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:04:21.332] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"急ã«TLã¿ã‚‹ã¨ã¿ã‚“ãªãªã‚“ã®è©±ã—ã—ã¦ã‚‹ã®ã‹åˆ†ã‹ã‚‰ã‚“ã‹ã‚‰æ¯Žå›žè§£èª¬ã—ã¦æ¬²ã—ã„","created_at":1759417460,"id":"836d629bc1f58119848e57ea79f8185f26822fc9a6fd05e71f00b6eae6411004","kind":1,"pubkey":"26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958","sig":"6f5c5164852812c5a83f22376c04b20b5c3a5b4f2a63cd2b1ed0b435d2c07e024bea1c08f7dc94a489c5f8036c879aeb734e035dcff9439e79fdc29ae0726380","tags":[["alt","A short note: 急ã«TLã¿ã‚‹ã¨ã¿ã‚“ãªãªã‚“ã®è©±ã—ã—ã¦ã‚‹ã®ã‹åˆ†ã‹ã‚‰ã‚“ã‹ã‚‰æ¯Žå›žè§£èª¬ã—ã¦æ¬²ã—ã„"]]}] +[11:04:21.393] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãƒãƒ£ãƒãƒªãƒ³ã‚°ã€€ãƒ†ã‚¤ãƒ«ã‚ºã‚ªãƒ–","created_at":1759417455,"id":"5f38b22c8b4d89287de75bc42ce613a544c03cc78496840653a3731f1404e966","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"9a46e70c7efb573c718834875ffb5919a50b9a0b83f252ba17397398185b49ffd25c573ee24ca26742d24df44a7e3327c4f09cc717f893c2bb6572b4f508be7b","tags":[]}] +[11:04:21.453] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Blonde and coppery colored and I loved them 🥹","created_at":1759417455,"id":"0277249c92b1e8774ca8ccd195b1b5d0b96b8d6e2f766c9ac287219517dfe295","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"3461428ebe714c29fcad22dd6e248ae0e6087d8bdda542ba4f43bf8ccddd83c1b03ee6df6d2ecad03eb27c4037dd5d272e3c6edf5f469d1617832a88fc30911a","tags":[["alt","A short note: Blonde and coppery colored and I loved them 🥹"],["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://nostr.mom/","root","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["e","20a74ba1431dfb1b82ddd64637f26c26a0a0431dfdbf6afeb89c178958bcb236","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99db1f1eab50b7ee284663bfde002ca2e78dd2aec43b2425dd22d899600df06a","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[11:04:21.514] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãªã‚“ã‹é¼»è©°ã¾ã£ã¦ã‚‹ä»¥å¤–ã‚ã‹ã‚‰ã­ã‡","created_at":1759417454,"id":"5baed720150ce780985fe7235168f9ffa6fbe1d678dcabeb159eab8494e14a39","kind":1,"pubkey":"59317d32e89cbd5fb7e5f8e16bbee29e35f12b4bc6561c9a691cc068af0dbfbd","sig":"e0719171ed6f54df8411e946cd46b780f69ac6d02cfa548c80b59b559913e9d3bd69b7d85e99945429ef12ce14d4a7da4a28da6b08d3d8035f71b51b9b5a24d7","tags":[["e","c012097d2fd5dfa1d0e3188e8d9c014d1a00c0e04c28e31daa7e66a782781350","","root"],["p","6369fb82bec54226bf09bb365b6f0d71b16c41f56e7edfd4f97de23f9c3281da"]]}] +[11:04:21.575] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"are the old neighbors better than the new ones?\n\nyes.","created_at":1759417449,"id":"97879b6d139db1e8323890a987ff129f5991279bdc91e4a67a4f20ee8146442d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"4a0e926393d600eb3725e49aee8104bda41bfb1f8c73aebe205c2924d26d5620725899a957b1212157c99b626295a6f9cf757eae9182b94e790dc9b6e3088d63","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","37a974f684be3fdee2da20be4dd687e04b7f638dc9fd6b76d1420e866c89f9df","","reply"]]}] +[11:04:21.635] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"マルã¡ã‚ƒã‚“ã®ä¾›çµ¦ãŒé€”çµ¶ãˆã¦æ­»ã¬","created_at":1759417427,"id":"94b9c75ce9b43d744e702e075e682f3852688d1d51a23651f48cbfdf03782ffd","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"c2c4488b56cc843f10f1926d0ecef60e6a7707c32197acc2bbed989ac514660d696e405de2602100feeae5bd877593ba9cc1d402e0fa6be438359c4f3e2197c5","tags":[]}] +[11:04:21.696] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Isn't bitcoin a self hostable l1? \n\n","created_at":1759417427,"id":"6b95490a72ee582971c8e5daeb849c5a03643f58f4082018bb319fdf523b7399","kind":1,"pubkey":"aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253","sig":"0198d58a8daeb87568da6bc275a98739ddc3a07e93ec800025d55349983beb68dd85d81b756984b551d7dfce4593a42062a84f047509b6f6fb8492fbe91360d3","tags":[["p","8d29657e79b9b8843a865094cd8efff117150dac371eb6e42b11fde6ebb55e48","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win"],["e","efdc32d6d74182abf98224ce05b2b9c66baecf1e1a35716bfbd7d1e2be334843","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root","8d29657e79b9b8843a865094cd8efff117150dac371eb6e42b11fde6ebb55e48"]]}] +[11:04:21.757] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Its been a productive day. I've created two new github repos and another npm package :)","created_at":1759417425,"id":"ce950ec7f98c40cd70cba5179c082fa7d023628de09591ffb1ee98791408fe99","kind":1,"pubkey":"266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5","sig":"1c06f8a09d0b9c0d92ed813b46a90b2cf7b839a54854eda3dfc4edd281ceae1f0bd42a6d6b7f24e6756994643d25ae1437f053c06351a8f64f7a89abd9216f59","tags":[["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:04:21.817] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂","created_at":1759417425,"id":"b7edfee69757eeedcd4183f94d83843fb82b2c18a5e594323665d3b34e7f1b4f","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"2ecf34eff1a788410e14bbdec58074b5f3d6df95f64f8bc4581c87b18a28027a96695f7c9910e5b3fc1fc333baec8f26805bee1b1c4bfd7adbaf8f9e38a539d8","tags":[["alt","A short note: 😂"],["e","4bae91ea0cc2d8ac2d98ee65dc218de0737e68d809ae887908c3e91e2435322d","wss://theforest.nostr1.com/","root","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["e","7b04742bc46b33ef9f6d5e9e7d925e7503866349293af7f1ea08bfaf15cae99b","wss://theforest.nostr1.com/","","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2"],["e","93bd8d8b5873d8d38682f1d5e1e1e3532d0846495dae38efa5ecb99d29c346c5","wss://theforest.nostr1.com/","reply","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","wss://theforest.nostr1.com/"],["p","fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","wss://nostr.land/"]]}] +[11:04:21.878] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Put me in coach","created_at":1759417417,"id":"e8eb7f2c9fc4c28dc1c7f2006d18d614aae8a18f7f7d70abcb941dcc953c81d0","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"4d3e1d4543f9a147f0c353dac6b3304fa34ae8291ebdfdc7412547f42e975b36454522cd695cc41a61f442759f97c5196a96c6792fa5ed25ed4e5dbed6db653c","tags":[["e","3b9593448fa2bdc8340de9a6153a22cc93e2ede733024985ddcf40e593bde78a","","root"],["e","1e97103a1a41ddfdb0d7b42f8ab5798bfed78c085928ad8cf737e34ca6bfbe5d","","reply"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b"]]}] +[11:04:21.938] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:04:21.999] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"oui","created_at":1759417460,"id":"a5814aba9c033a98f81adf7c0c9069b9db5948e0ffc4d38c82d01bb21e4ca83d","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"076984deca50feadbe16110d27f6b8c25d11ee76377077acf7f0b87f9870b9f7d0117bb5adb6952173ebe009a6e982f3c072148842f2fd3b272f233d8e084705","tags":[["client","Damus Android"],["e","7883eff43b63953173fbfb41c664ff947f0eab0638201bfd2fbdde897b0e9aa3","","root"],["p","1c197b12ca9ce0415b70e7405b9770f0ec6bccfb59b32b63aafd42cb242e1642"]]}] +[11:04:22.946] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ä¸è¿‡å£°ä¼˜å¾ˆå¿«ä¼šå¤±ä¸šæŠŠðŸ¤”","created_at":1759417461,"id":"860c14d8db5c4b7c52f224d0e5b2f7249d8e1c712fabd797bda166726b5a228c","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"215b399564e23d171325c5b5e42a5c8cb750b7b75d13f2ce0421b3d584258d6fc19ffb80f4671da9a3fc183e901d5763c20f2b6a333709f82677a6f0dad12e8c","tags":[["e","ef5b5f649e9eb336f0cf14db41086011b1f2184e3984d2608bc6f9964032ae85","","root"],["e","76b5ff0e0a707cce4d7ee13d042a71543f1387607b9ec1553882fdd13485eb37","","reply"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["p","8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba"]]}] +[11:04:27.989] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"プログラミング用ã®AIをローカルã§å‹•ã‹ã™ã®ã¯é›£ã—ã„ã®ï¼Ÿ","created_at":1759417467,"id":"1387eff3504410c77dcc01e0d39b95368ac404a60ac0a2eba53587aa73353dfe","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"a685eff7681849baaf2bc2c0ad1ee51497e90e03b2c8d8e45eb8055ae7542992772566c0d44a42582ac1ed246a292dfa0aa44806d4acb8e53dc5183b32e994cf","tags":[]}] +[11:04:28.842] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Microsoft 365 ganha nova cara com ícones redesenhados a pensar no Copilot https://tugatech.com.pt/t72208-microsoft-365-ganha-nova-cara-com-icones-redesenhados-a-pensar-no-copilot","created_at":1759417467,"id":"37840173b6f4d6abb106324b3eb2f991cda19d48be59e29fcaa3f891e41c4ceb","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"1a3710e6a5bef0220f9a465b4aab035ba3ebd98f406498d0d318e8ff819a24e59fad2021f704b8fc12cbd5dd7536555a233c47652a8ee64d2c24d575a3f7d37a","tags":[]}] +[11:04:30.341] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Slop","created_at":1759417469,"id":"dd506092c84a2736c69bf5ac1fb7f088d090218f5b21fc05adcfac042fc077ce","kind":1,"pubkey":"f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","sig":"9bb150cb29d93057916cbd266c53f5da6a86b8d5c90b1a1269da805679972f40341b1a906c95337f05656f0fcec8b3a198cc0689995616cc6281258244d97b74","tags":[["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","","root"]]}] +[11:04:31.803] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Wow what a post. Unbelievable there are people saying Nostr is just a bitcoin echo chamber. Nostr is wonderful\n\nnostr:note1k508akkzku70lz520kut2mkyx0n3lggzj27tgf4hlv0xexlfn2mqlvccsy","created_at":1759417471,"id":"47764b38a72052aa0edb0141ffb2c59782f060e8011eb541bdd879a2ec459aa2","kind":1,"pubkey":"3b7550d595ec596f8d3a959823deead90a330e347ba423953058ea67aa34878f","sig":"49c0a6a160d7ddcc8ca10af647aac7dabd93843d9e8cc063d00e34333fbcd2f333db9f82505319669bc9ed6d635f27591202389fcf5929f4bbf04fe2184800f8","tags":[["q","b51e7edac2b73cff8a8a7db8b56ec433e71fa10292bcb426b7fb1e6c9be99ab6"],["p","4eb88310d6b4ed95c6d66a395b3d3cf559b85faec8f7691dafd405a92e055d6d"],["p","4eb88310d6b4ed95c6d66a395b3d3cf559b85faec8f7691dafd405a92e055d6d"]]}] +[11:04:32.200] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Google Home está de volta: nova coluna inteligente foi desenhada para o Gemini for Home https://tugatech.com.pt/t72209-google-home-esta-de-volta-nova-coluna-inteligente-foi-desenhada-para-o-gemini-for-home","created_at":1759417470,"id":"8d96af8de89ea7f52796d0234e52e289578e53876c66f76d2b307d8c9f909755","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"86b721cd552d9a5f9bc3bdfc870e35ed26f7b78aa3daeed19f10e1a1bb23cf8122e7859c8e8df4d23db9fbc8f290c2ca9918d788955c26160c471ff28d7f8646","tags":[]}] +[11:04:32.594] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the coming energy shock will be unlike anything America has ever seen\nhttps://blossom.primal.net/5c5486f66eaa0f760118b5304c60d1ea352c10b3ae6c01d7638d72ad3a2fe8e1.jpg","created_at":1759417472,"id":"7b4df8bc206f0184dee69b35d746c25c84757b216a9a9fdbbfae0339893a4881","kind":1,"pubkey":"8fda2199c4399fad7ff4126b402f1f5ee157fdbe4c0951e64dfe31aaec877ff1","sig":"bfd175bcc264bd50bdcfde02312e580fc690c7470bd88c99a311a7daf82adeb54921bb816eb5abaa3d41729bc9f7e3dc6045b6b2092b63d1c423df3c484eedb3","tags":[]}] +[11:04:35.311] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ ã—ã¾ã£ãŸã€€ãƒ‡ãƒ‘ã‚¹ã¨æŠ—ãƒ’ã‚¹ã‚¿ãƒŸãƒ³å‰¤ä¸¡æ–¹é£²ã‚“ã˜ã‚ƒã£ãŸ\nèµ·ãられるã‹ãª","created_at":1759417474,"id":"cdbb6784294cb2f5d8bd9230f0c33231ce49bfdaedacde760eb92331a8a57738","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"331e34f77911acccba54c077e2a28041974410c2ddfdd54171af6bdbbd928649d5d5e3ad4c8bf6e7f1afbac8259ad987869fd0bb56d68976432f3fa589c626e2","tags":[]}] +[11:04:42.214] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:04:42.325] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:04:42.385] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:04:42.446] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:04:44.218] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the new ones are noisy and inconsiderate","created_at":1759417483,"id":"1c9650aa99e1d880706b61ce83d1b84630a74c83ed6836421349cdc368cdc907","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"8128f0e9ec14e532342044ead59aea3c3b1b04b9b31cc6e7eaf521448b18c83daffd92ec60b8832d66f2db8fbe4b9c487228c68dd851d5bc3010c076f897b4c2","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","97879b6d139db1e8323890a987ff129f5991279bdc91e4a67a4f20ee8146442d","","reply"]]}] +[11:04:45.939] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#SensualStyle 😘🔥 \nhttps://images2.imgbox.com/82/f6/S9QmiNYD_o.jpg \n#FitnessModel ","created_at":1759417484,"id":"b31a708b5c5b6522327558860afa728a833cb0ff1b3f9aac98a80ea58bb78cd0","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"471b0ad0902d6030bf7a929ff9e68aa5cfdf79cc3b6d231b989396c1717995b4ed5adacadd4eb8a3d009a7d9602c677092d66dc324967edd15619fb7d3522675","tags":[]}] +[11:04:45.999] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"We should start a compound where all tech and materials (music, movies, etc.) are 90s-early 2000s. You have to watch your minutes again and have internet, but it’s dial-up. It’s like “new Amishâ€","created_at":1759417485,"id":"7ec3584c69336bd2f42fd984dcd11f9ca2cb28c3ba5207f7bdf736cf2b8615e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"92731e3b4c93933cb3ac8b00e85bc43d9a5a746d2696412a9dfc56717283861959a24110dad39c7ca3f2076f914978bede7909d320350f3395fcd67535e7f429","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","5fd3fc85acaa26c497afff4ebc052a9fba21bd87e7f2ddc1cf3e343bbefacec1","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"]]}] +[11:04:49.195] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€Žä»ŠåŒ—ç”£æ¥­ã€æ©Ÿèƒ½ãŒå¿…è¦","created_at":1759417486,"id":"afe0e4961d76bb4d84be21d82a023371bb231c128d84117c132330e2006f3f7b","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"811da55ab9657aa0907631628fdec185647394956917fd462f2f65aca34de0407b530e60203242fce40f4c683998e3aee82cc2fa1c0eac2b048fd9bb5643f4d0","tags":[["alt","A short note: ã€Žä»ŠåŒ—ç”£æ¥­ã€æ©Ÿèƒ½ãŒå¿…è¦"]]}] +[11:04:51.136] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:04:51.287] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€Žä»ŠåŒ—ç”£æ¥­ã€æ©Ÿèƒ½ãŒå¿…è¦","created_at":1759417486,"id":"afe0e4961d76bb4d84be21d82a023371bb231c128d84117c132330e2006f3f7b","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"811da55ab9657aa0907631628fdec185647394956917fd462f2f65aca34de0407b530e60203242fce40f4c683998e3aee82cc2fa1c0eac2b048fd9bb5643f4d0","tags":[["alt","A short note: ã€Žä»ŠåŒ—ç”£æ¥­ã€æ©Ÿèƒ½ãŒå¿…è¦"]]}] +[11:04:51.348] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"We should start a compound where all tech and materials (music, movies, etc.) are 90s-early 2000s. You have to watch your minutes again and have internet, but it’s dial-up. It’s like “new Amishâ€","created_at":1759417485,"id":"7ec3584c69336bd2f42fd984dcd11f9ca2cb28c3ba5207f7bdf736cf2b8615e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"92731e3b4c93933cb3ac8b00e85bc43d9a5a746d2696412a9dfc56717283861959a24110dad39c7ca3f2076f914978bede7909d320350f3395fcd67535e7f429","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","5fd3fc85acaa26c497afff4ebc052a9fba21bd87e7f2ddc1cf3e343bbefacec1","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"]]}] +[11:04:51.408] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#SensualStyle 😘🔥 \nhttps://images2.imgbox.com/82/f6/S9QmiNYD_o.jpg \n#FitnessModel ","created_at":1759417484,"id":"b31a708b5c5b6522327558860afa728a833cb0ff1b3f9aac98a80ea58bb78cd0","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"471b0ad0902d6030bf7a929ff9e68aa5cfdf79cc3b6d231b989396c1717995b4ed5adacadd4eb8a3d009a7d9602c677092d66dc324967edd15619fb7d3522675","tags":[]}] +[11:04:51.469] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the new ones are noisy and inconsiderate","created_at":1759417483,"id":"1c9650aa99e1d880706b61ce83d1b84630a74c83ed6836421349cdc368cdc907","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"8128f0e9ec14e532342044ead59aea3c3b1b04b9b31cc6e7eaf521448b18c83daffd92ec60b8832d66f2db8fbe4b9c487228c68dd851d5bc3010c076f897b4c2","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","97879b6d139db1e8323890a987ff129f5991279bdc91e4a67a4f20ee8146442d","","reply"]]}] +[11:04:51.529] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ ã—ã¾ã£ãŸã€€ãƒ‡ãƒ‘ã‚¹ã¨æŠ—ãƒ’ã‚¹ã‚¿ãƒŸãƒ³å‰¤ä¸¡æ–¹é£²ã‚“ã˜ã‚ƒã£ãŸ\nèµ·ãられるã‹ãª","created_at":1759417474,"id":"cdbb6784294cb2f5d8bd9230f0c33231ce49bfdaedacde760eb92331a8a57738","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"331e34f77911acccba54c077e2a28041974410c2ddfdd54171af6bdbbd928649d5d5e3ad4c8bf6e7f1afbac8259ad987869fd0bb56d68976432f3fa589c626e2","tags":[]}] +[11:04:51.590] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"the coming energy shock will be unlike anything America has ever seen\nhttps://blossom.primal.net/5c5486f66eaa0f760118b5304c60d1ea352c10b3ae6c01d7638d72ad3a2fe8e1.jpg","created_at":1759417472,"id":"7b4df8bc206f0184dee69b35d746c25c84757b216a9a9fdbbfae0339893a4881","kind":1,"pubkey":"8fda2199c4399fad7ff4126b402f1f5ee157fdbe4c0951e64dfe31aaec877ff1","sig":"bfd175bcc264bd50bdcfde02312e580fc690c7470bd88c99a311a7daf82adeb54921bb816eb5abaa3d41729bc9f7e3dc6045b6b2092b63d1c423df3c484eedb3","tags":[]}] +[11:04:51.650] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Wow what a post. Unbelievable there are people saying Nostr is just a bitcoin echo chamber. Nostr is wonderful\n\nnostr:note1k508akkzku70lz520kut2mkyx0n3lggzj27tgf4hlv0xexlfn2mqlvccsy","created_at":1759417471,"id":"47764b38a72052aa0edb0141ffb2c59782f060e8011eb541bdd879a2ec459aa2","kind":1,"pubkey":"3b7550d595ec596f8d3a959823deead90a330e347ba423953058ea67aa34878f","sig":"49c0a6a160d7ddcc8ca10af647aac7dabd93843d9e8cc063d00e34333fbcd2f333db9f82505319669bc9ed6d635f27591202389fcf5929f4bbf04fe2184800f8","tags":[["q","b51e7edac2b73cff8a8a7db8b56ec433e71fa10292bcb426b7fb1e6c9be99ab6"],["p","4eb88310d6b4ed95c6d66a395b3d3cf559b85faec8f7691dafd405a92e055d6d"],["p","4eb88310d6b4ed95c6d66a395b3d3cf559b85faec8f7691dafd405a92e055d6d"]]}] +[11:04:51.711] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Google Home está de volta: nova coluna inteligente foi desenhada para o Gemini for Home https://tugatech.com.pt/t72209-google-home-esta-de-volta-nova-coluna-inteligente-foi-desenhada-para-o-gemini-for-home","created_at":1759417470,"id":"8d96af8de89ea7f52796d0234e52e289578e53876c66f76d2b307d8c9f909755","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"86b721cd552d9a5f9bc3bdfc870e35ed26f7b78aa3daeed19f10e1a1bb23cf8122e7859c8e8df4d23db9fbc8f290c2ca9918d788955c26160c471ff28d7f8646","tags":[]}] +[11:04:51.771] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Slop","created_at":1759417469,"id":"dd506092c84a2736c69bf5ac1fb7f088d090218f5b21fc05adcfac042fc077ce","kind":1,"pubkey":"f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","sig":"9bb150cb29d93057916cbd266c53f5da6a86b8d5c90b1a1269da805679972f40341b1a906c95337f05656f0fcec8b3a198cc0689995616cc6281258244d97b74","tags":[["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","","root"]]}] +[11:04:51.832] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Microsoft 365 ganha nova cara com ícones redesenhados a pensar no Copilot https://tugatech.com.pt/t72208-microsoft-365-ganha-nova-cara-com-icones-redesenhados-a-pensar-no-copilot","created_at":1759417467,"id":"37840173b6f4d6abb106324b3eb2f991cda19d48be59e29fcaa3f891e41c4ceb","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"1a3710e6a5bef0220f9a465b4aab035ba3ebd98f406498d0d318e8ff819a24e59fad2021f704b8fc12cbd5dd7536555a233c47652a8ee64d2c24d575a3f7d37a","tags":[]}] +[11:04:51.892] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:04:52.109] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Que rico el frío de la mañana, y aquí con una majestuosa compañía. \n\nBuenos días gente linda de #Nostr. Es jueves.✨\n\n¡#Hola, buenos días #Bitcoin!💚🤎\n\n🙋ðŸ»â€â™€ï¸. 📸\n\nhttps://image.nostr.build/166900528273eeb68379c99ae7b3a06f3a616a6099ff687b7f44d447d8b5c509.jpg","created_at":1759417491,"id":"a343817f0a20f4d2d51d6b0cd4f4bb6e0250a9ab00b295bdc5c997df924f6ea4","kind":1,"pubkey":"48ab8fce95a379fba81f89f6410e86c24c5fc3760a0084b59cbf69bb426e30de","sig":"049c626068770d020b2cf1489755fd28a20edb97db0ba9863a02260e2707f7180d00f3ad858f6f8610df973e2dc2985fc8d80eb95a2adda79da9d0c2cc51b7c8","tags":[["imeta","url https://image.nostr.build/166900528273eeb68379c99ae7b3a06f3a616a6099ff687b7f44d447d8b5c509.jpg","blurhash e9AAXSxu00%Mt7IU8_%M-:4n9FRi?bj[of?b%MWBIUt7RjM{IVM{M{","dim 958x1280"],["t","nostr"],["t","hola"],["t","bitcoin"],["r","https://image.nostr.build/166900528273eeb68379c99ae7b3a06f3a616a6099ff687b7f44d447d8b5c509.jpg"]]}] +[11:04:56.622] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub1fjtdwclt9lspjy8huu3qklr7eklp5uq90u6yh8mec290pqxraccqlufnas nostr:npub18m76awca3y37hkvuneavuw6pjj4525fw90necxmadrvjg0sdy6qsngq955 \n\nWe need a button that simultaneously #zaps #reposts #likes and #follows if you are not already following #damus. \n Or does it already exist?\n\nEvery once in a while there is a post that is just that good!","created_at":1759417496,"id":"9c24b48e361b88001dd3e8e2fe1091814a618d9eb11da5c6108d7237bea0b611","kind":1,"pubkey":"008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b","sig":"90eeef6a9817941a5b58180c88823a50ce7c5516124731bd4cf11504a190e9380a82c2e663817d7c46baff6fd25ba0cb75be34862b6ed9173e9be27e8781e9b6","tags":[["p","4c96d763eb2fe01910f7e7220b7c7ecdbe1a70057f344b9f79c28af080c3ee30"],["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["t","zaps"],["t","reposts"],["t","likes"],["t","follows"],["t","damus"]]}] +[11:04:59.685] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You watch this series yet?\nhttps://europathelastbattle.net/","created_at":1759417494,"id":"375eff0c0c8304a1fbaba3559bd62ad4f107ee9f28a85f6701d474ede67be417","kind":1,"pubkey":"0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","sig":"244f0d73b19d10ab6e93c0e5d3f0ee36e3a7f9ebd6f81db7eef28e82bb9f1c3560e235fa13e81ec0cffb60c295b473502298de64ab1f504d4771dc59448bcc1c","tags":[["e","d78234a9f86ed09899536cf3b3e01882157a58fffe1f5fa05df113018cb0381b","wss://nostr.mom","root","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"],["e","6a9c85d42b7ebf5c7f6cc294343438530b362822d0083c967390c612f1220f45","wss://nostr.mom","reply"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://premium.primal.net/"],["p","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9"],["r","wss://atlas.nostr.land/"],["r","wss://eden.nostr.land/","read"],["r","wss://filter.nostr.wine/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://nostrelites.org/"],["r","wss://premium.primal.net/"],["r","wss://nostr-pub.wellorder.net/"]]}] +[11:05:00.208] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This is informative:\n\nhttps://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments","created_at":1759417499,"id":"2a2e3fc562d518078048c08fa42e40226ef9807977d12b3862ffaccff29ae63f","kind":1,"pubkey":"08bfc00b7f72e015f45c326f486bec16e4d5236b70e44543f1c5e86a8e21c76a","sig":"f3a8da79cf0ef66f429e08cb67a0cd5159009ff039c64b3a5763cbe0da817ccccb00c59da5f200f6f42d06158e753bdd09956fca9db8158ecdae9823e2928329","tags":[["alt","A short note: This is informative:\n\nhttps://kumarletter.com/post..."],["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://premium.primal.net/","root","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","wss://eden.nostr.land/"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://relay.primal.net/"],["r","https://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments"]]}] +[11:05:00.380] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 0:05 ------------✄","created_at":1759417500,"id":"c70d0620ffd7388c14ec213c2025a5c41532a8c550c949d13afaa4bfd925632f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"a130a6145a0c48f17560cf9e7f95d227689c800e9d244324987746db9243df97347c834a9a4955951c56a1ab1fe336b5964c320114a5639fd519c1296d3db2d6","tags":[]}] +[11:05:01.511] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#GM ☕🚬🫡ðŸ´â€â˜ ï¸\n#thepsyopsarewinning #breakthestate #anarchy\nhttps://image.nostr.build/ffc8e2c5b22fc3d5ab81e4c89ba2626832e1249b3460492f7fa97b60b9f1459b.jpg\n\n\"Sometimes the people who think they are the most \"awake\" are the most psyopable.\" \n\n- Whitney Webb","created_at":1759417502,"id":"601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"2afcae361d2a94905cd9dd352e4e5024fa547672149d68dda5ad43573cfe27ebb2ced14c79729dbcdc566f9108313a22081fe94ea79a592ec970d0e014c045dc","tags":[["t","GM"],["t","thepsyopsarewinning"],["t","breakthestate"],["t","anarchy"]]}] +[11:05:05.223] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"i always remembered this scene in this music video she pulls out here phone like its a sidekick but she has excel on it lmao","created_at":1759417504,"id":"b40c74bc5289028a0c58c00665a349495bb2f41b8dac246877e4b4185a38306a","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"b9b1da535384b5c4d7bb558c9d9449a53222cb6d5cecf9ffb93a844ea7946ae2978563a5446635c191dd861a4029cadaafd2230235c5a746f74709dfa2f88aed","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","5fd3fc85acaa26c497afff4ebc052a9fba21bd87e7f2ddc1cf3e343bbefacec1","wss://nostrelites.org/","reply","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:05:05.948] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"難ã—ã„ã§ã™ã€‚速度ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãŒè¶³ã‚Šãªããªã‚Šã¾ã™ã€‚\nnostr:nevent1qqsp8pl07dgygyx80hxqrcxnnw2ndzkyqjnq4s9zawjntpa2wv6nmlsppemhxue69uhhjctzw5hx6ef0qgsfleevwm8drymq7tnzmzdck48cpl02saap7v6ttzc7f003uwjljqsrqsqqqqqp9dzv29","created_at":1759417506,"id":"ae1b909f67c0173a93c8eea29f2dbe16fcd58a1b1f80dccf69a321ffec4744db","kind":1,"pubkey":"26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958","sig":"c894be5d27080e4980c2a5ce2c1d94947bc3064130e9b2e40577f199254f98c161aeee63287d5ca84d3a29c568625a6c0c3bfb3383c345385b4f298d17d7212f","tags":[["alt","A short note: 難ã—ã„ã§ã™ã€‚速度ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãŒè¶³ã‚Šãªããªã‚Šã¾ã™ã€‚\nnostr:nevent1qqsp8pl07dg..."],["p","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","wss://yabu.me/"],["r","https://難ã—ã„ã§ã™ã€‚速度ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãŒè¶³ã‚Šãªããªã‚Šã¾ã™ã€‚"],["q","1387eff3504410c77dcc01e0d39b95368ac404a60ac0a2eba53587aa73353dfe","wss://yabu.me/","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902"],["zap","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","wss://yabu.me/","0.9"],["zap","26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958","wss://yabu.me/","0.1"]]}] +[11:05:09.551] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"they also cant seem to align the landscaping","created_at":1759417509,"id":"7aa7bfb8215a334c0fd106e4a51467a6de166f65268e1c3137ec077e17b025d3","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"3a00f4a70173845bc362c4f5fcdb800330ce6adf5fb1727d600bcb9f277a17939fbf00b549609528ebee84095d243a363fe975f48f5fcf2f31fba173dfc7eb0b","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","1c9650aa99e1d880706b61ce83d1b84630a74c83ed6836421349cdc368cdc907","","reply"]]}] +[11:05:12.209] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:05:12.320] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:05:12.380] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:05:12.441] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:05:16.428] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Let’s go ðŸ¤","created_at":1759417516,"id":"9779b31de7cabdc527c9ba87d86c897dabc75e230dbece04a631cbda0c3ac158","kind":1,"pubkey":"17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","sig":"2ff704a31751057d8553d7216a9577644df8a57cf201076fb8a23ac60088a489a8f06cfef0baf671c9ba207c24f093b9b8d412a3272142a34cd895f50f00ff7b","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root"],["e","4ede3b9185a2be5b2e6ed290e8c71f4cc10efd0670963aa14e4d0a0420b85db5","wss://wons.calva.dev","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"]]}] +[11:05:19.586] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚„ã£ã¶ã¿ãƒ¼ã‚“","created_at":1759417518,"id":"2e1118e1304c7aed44ebaff791746d8cb1fb43dc0ec481a4b3e37dec2e2e6ab2","kind":1,"pubkey":"e0a8cbd75ebfe4efbba8a65ff54bb435858404f6dc0ba4a6458a24d7f642d154","sig":"b9ad23dd20dd3d67a4b5bc5ddac3e3c810705b6b9e1843ebc0e941b6cfd212795cf6fdb12e18d40657768b591cbc6dc0d3baf4b4dfd87c2f411da789afa31d01","tags":[]}] +[11:05:19.758] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#asknostr\nWould you consider yourself minimalist or hoarder?\nI am in between I guess! I used to buy so many clothes, shoes, bags and make-up and hardly use them! Collecting dust!\nWhen I started to move places, I realised it has to stop bcoz not only for the waste of money but a bloody waste of space. 😂\nHow bout you? \nGood morning #nostr #plebs #plebchain #gm","created_at":1759417519,"id":"05560307e9d0647b45ec4adb86947a0d72fffc9395a73ac1403ef7caacc63f76","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"ec170ec4b33b71c8c104c40cf7e90ddeff733020294d34353f37b344da91f4fbd2c8f82cb800f005ba8812929554aadacbd68558758726526c0d43ea48831e5b","tags":[["t","asknostr"],["t","nostr"],["t","plebs"],["t","plebchain"],["t","gm"]]}] +[11:05:21.146] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:05:21.257] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Markets shrug off US shutdown fears as investors look past a weak ADP print; AI optimism after an OpenAI deal with Korean chipmakers supported semiconductor gains. US indices hold slight gains while European bourses rally (DAX, CAC40, AEX +1%+). Dollar around 1.1700 vs euro; bonds slightly higher; gold trend intact. #NASDAQ #FiatNews","created_at":1759417501,"id":"770b5827895bf4e2ff70a91067518a53a86d04ac07caccb43a6bd734a60c8805","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"c1bcb9f839284ef436545afc6f687d934b8161f725c142ff467ad88762bfe192980ccbd4883b25b00a71d9da61d8b113da80e3332c62061546eaaaa6438952a8","tags":[["t","NASDAQ"],["t","nasdaq"],["t","FiatNews"],["t","fiatnews"]]}] +[11:05:21.318] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#asknostr\nWould you consider yourself minimalist or hoarder?\nI am in between I guess! I used to buy so many clothes, shoes, bags and make-up and hardly use them! Collecting dust!\nWhen I started to move places, I realised it has to stop bcoz not only for the waste of money but a bloody waste of space. 😂\nHow bout you? \nGood morning #nostr #plebs #plebchain #gm","created_at":1759417519,"id":"05560307e9d0647b45ec4adb86947a0d72fffc9395a73ac1403ef7caacc63f76","kind":1,"pubkey":"5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","sig":"ec170ec4b33b71c8c104c40cf7e90ddeff733020294d34353f37b344da91f4fbd2c8f82cb800f005ba8812929554aadacbd68558758726526c0d43ea48831e5b","tags":[["t","asknostr"],["t","nostr"],["t","plebs"],["t","plebchain"],["t","gm"]]}] +[11:05:21.378] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚„ã£ã¶ã¿ãƒ¼ã‚“","created_at":1759417518,"id":"2e1118e1304c7aed44ebaff791746d8cb1fb43dc0ec481a4b3e37dec2e2e6ab2","kind":1,"pubkey":"e0a8cbd75ebfe4efbba8a65ff54bb435858404f6dc0ba4a6458a24d7f642d154","sig":"b9ad23dd20dd3d67a4b5bc5ddac3e3c810705b6b9e1843ebc0e941b6cfd212795cf6fdb12e18d40657768b591cbc6dc0d3baf4b4dfd87c2f411da789afa31d01","tags":[]}] +[11:05:21.439] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Let’s go ðŸ¤","created_at":1759417516,"id":"9779b31de7cabdc527c9ba87d86c897dabc75e230dbece04a631cbda0c3ac158","kind":1,"pubkey":"17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","sig":"2ff704a31751057d8553d7216a9577644df8a57cf201076fb8a23ac60088a489a8f06cfef0baf671c9ba207c24f093b9b8d412a3272142a34cd895f50f00ff7b","tags":[["e","46173f7a946de599e294f7081fd84e832c1d434d29d0e8a35a0069a8fb45cdbb","wss://pyramid.fiatjaf.com/","root"],["e","4ede3b9185a2be5b2e6ed290e8c71f4cc10efd0670963aa14e4d0a0420b85db5","wss://wons.calva.dev","reply"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"]]}] +[11:05:21.499] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"they also cant seem to align the landscaping","created_at":1759417509,"id":"7aa7bfb8215a334c0fd106e4a51467a6de166f65268e1c3137ec077e17b025d3","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"3a00f4a70173845bc362c4f5fcdb800330ce6adf5fb1727d600bcb9f277a17939fbf00b549609528ebee84095d243a363fe975f48f5fcf2f31fba173dfc7eb0b","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","1c9650aa99e1d880706b61ce83d1b84630a74c83ed6836421349cdc368cdc907","","reply"]]}] +[11:05:21.560] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"難ã—ã„ã§ã™ã€‚速度ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãŒè¶³ã‚Šãªããªã‚Šã¾ã™ã€‚\nnostr:nevent1qqsp8pl07dgygyx80hxqrcxnnw2ndzkyqjnq4s9zawjntpa2wv6nmlsppemhxue69uhhjctzw5hx6ef0qgsfleevwm8drymq7tnzmzdck48cpl02saap7v6ttzc7f003uwjljqsrqsqqqqqp9dzv29","created_at":1759417506,"id":"ae1b909f67c0173a93c8eea29f2dbe16fcd58a1b1f80dccf69a321ffec4744db","kind":1,"pubkey":"26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958","sig":"c894be5d27080e4980c2a5ce2c1d94947bc3064130e9b2e40577f199254f98c161aeee63287d5ca84d3a29c568625a6c0c3bfb3383c345385b4f298d17d7212f","tags":[["alt","A short note: 難ã—ã„ã§ã™ã€‚速度ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãŒè¶³ã‚Šãªããªã‚Šã¾ã™ã€‚\nnostr:nevent1qqsp8pl07dg..."],["p","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","wss://yabu.me/"],["r","https://難ã—ã„ã§ã™ã€‚速度ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãŒè¶³ã‚Šãªããªã‚Šã¾ã™ã€‚"],["q","1387eff3504410c77dcc01e0d39b95368ac404a60ac0a2eba53587aa73353dfe","wss://yabu.me/","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902"],["zap","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","wss://yabu.me/","0.9"],["zap","26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958","wss://yabu.me/","0.1"]]}] +[11:05:21.621] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"i always remembered this scene in this music video she pulls out here phone like its a sidekick but she has excel on it lmao","created_at":1759417504,"id":"b40c74bc5289028a0c58c00665a349495bb2f41b8dac246877e4b4185a38306a","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"b9b1da535384b5c4d7bb558c9d9449a53222cb6d5cecf9ffb93a844ea7946ae2978563a5446635c191dd861a4029cadaafd2230235c5a746f74709dfa2f88aed","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","5fd3fc85acaa26c497afff4ebc052a9fba21bd87e7f2ddc1cf3e343bbefacec1","wss://nostrelites.org/","reply","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:05:21.681] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#GM ☕🚬🫡ðŸ´â€â˜ ï¸\n#thepsyopsarewinning #breakthestate #anarchy\nhttps://image.nostr.build/ffc8e2c5b22fc3d5ab81e4c89ba2626832e1249b3460492f7fa97b60b9f1459b.jpg\n\n\"Sometimes the people who think they are the most \"awake\" are the most psyopable.\" \n\n- Whitney Webb","created_at":1759417502,"id":"601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"2afcae361d2a94905cd9dd352e4e5024fa547672149d68dda5ad43573cfe27ebb2ced14c79729dbcdc566f9108313a22081fe94ea79a592ec970d0e014c045dc","tags":[["t","GM"],["t","thepsyopsarewinning"],["t","breakthestate"],["t","anarchy"]]}] +[11:05:21.742] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Markets shrug off US shutdown fears as investors look past a weak ADP print; AI optimism after an OpenAI deal with Korean chipmakers supported semiconductor gains. US indices hold slight gains while European bourses rally (DAX, CAC40, AEX +1%+). Dollar around 1.1700 vs euro; bonds slightly higher; gold trend intact. #NASDAQ #FiatNews","created_at":1759417501,"id":"770b5827895bf4e2ff70a91067518a53a86d04ac07caccb43a6bd734a60c8805","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"c1bcb9f839284ef436545afc6f687d934b8161f725c142ff467ad88762bfe192980ccbd4883b25b00a71d9da61d8b113da80e3332c62061546eaaaa6438952a8","tags":[["t","NASDAQ"],["t","nasdaq"],["t","FiatNews"],["t","fiatnews"]]}] +[11:05:21.802] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 0:05 ------------✄","created_at":1759417500,"id":"c70d0620ffd7388c14ec213c2025a5c41532a8c550c949d13afaa4bfd925632f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"a130a6145a0c48f17560cf9e7f95d227689c800e9d244324987746db9243df97347c834a9a4955951c56a1ab1fe336b5964c320114a5639fd519c1296d3db2d6","tags":[]}] +[11:05:21.863] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This is informative:\n\nhttps://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments","created_at":1759417499,"id":"2a2e3fc562d518078048c08fa42e40226ef9807977d12b3862ffaccff29ae63f","kind":1,"pubkey":"08bfc00b7f72e015f45c326f486bec16e4d5236b70e44543f1c5e86a8e21c76a","sig":"f3a8da79cf0ef66f429e08cb67a0cd5159009ff039c64b3a5763cbe0da817ccccb00c59da5f200f6f42d06158e753bdd09956fca9db8158ecdae9823e2928329","tags":[["alt","A short note: This is informative:\n\nhttps://kumarletter.com/post..."],["e","26069ba486988aa3ebba94240624ced90c62d4a5ffbe0b36e4f56d62f07f27dd","wss://premium.primal.net/","root","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","wss://eden.nostr.land/"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://relay.primal.net/"],["r","https://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments"]]}] +[11:05:21.924] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:05:22.095] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã†ã‚ã•ã‚“ã¨ãŠã‚‚ã¡ã¯ã¹ã£ãŸã‚“ã®ä»ŠåŒ—産業係","created_at":1759417521,"id":"9ed300e0b81e53e462256738fd5c2faa1d179eee8d46f9bb1b70fc86f3f2f92e","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"ab224d501efc3ba0b872e6245740f3c9a0ae44824677673e445f32b516815f8db6b5ef4f6b9d64751843855008ddb71efb93c08751f4619e44d1e3f2308b7d7f","tags":[]}] +[11:05:22.710] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/8ab6598301d71a05cb39af87018edda4847d3526f29561a9acc10c31ada4d480.gif","created_at":1759417522,"id":"c194004df927a5bdbaf5761d53780a83a2e00e42352048d8d80e6fb6aaf87a2d","kind":1,"pubkey":"8fda2199c4399fad7ff4126b402f1f5ee157fdbe4c0951e64dfe31aaec877ff1","sig":"99ce90ae6508e41bd7fc20595de1804afb8bd3d0487ee21c64fcb7d126c6e86a406adec1e4199d1e2f8d69c0d51bf02e72d24556f5cab49864aafe09ae246a80","tags":[["e","6ff3ae83c8c734032244aca7f772c1ae13707db1493079dfe43066c0c678f4a9","wss://nostr-dev.wellorder.net","root"],["p","8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641","","mention"]]}] +[11:05:27.209] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks! I didn't know other coins were centralized. I don't think Monero is though.","created_at":1759417524,"id":"64ecc2bc39a6410b8f291c2ec30ed9763663df774dfe7a9b0d7e2e6d6062173c","kind":1,"pubkey":"3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","sig":"b99433e55119732e8764fa8c75a019630b1b96b03c758465a6a64961e6453b4e582795fff86a7a542c80566fb9aaa99bbb428ad89dbdb290f68cfaefa9e7d967","tags":[["alt","A short note: Thanks! I didn't know other coins were centralized..."],["e","9ae53fea751fc1007b611940cea0e9efb8a18bbb16f2b611b18772e9d9cac237","wss://relay.primal.net/","root","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["e","173830e56b52af63b70325993eab644dd866e162c0d7cb9c338f4c2e91e26a57","wss://nostr.mom/","","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","f4ec5857f18a0543c6be3a924532a54e02a954f59dbb215c327d910c1a285eff","wss://relay.primal.net/","","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["e","3609c41f7436937d4d390e4b73f685d17a9f0217696564fbee5331d9a44c92e3","wss://nostr.mom/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","ws://bostr.bitcointxoko.com/"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","wss://nostr.mom/"]]}] +[11:05:27.380] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Israel has once again proved it has perfect impunity – for now\n\nFrom RT\n\nThe assault on an aid flotilla headed for Gaza broke all kinds of laws, but then again, laws don’t concern the West’s favorite rogue state The long-expected if perfectly criminal has happened again: Israel’s navy has intercepted the Gaza-bound Sumud Flotilla by force, stopping almost 50 boats and, in effect, kidnapping hundreds of their crews […]\n\nOct 2nd 2025 10:55am EDT\n\nSource Link: https://www.rt.com/news/625763-israel-gaza-flotilla-impunity/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044283","created_at":1759417345,"id":"ba09bb612bfa8f81ce952bed72395f1ec9307fd4f9814bf0aebf03175603bddf","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"ce2c0f4e3a4aab24d3a036696d264cde06d90a699a3929b71e3d7f8424666322f4dfe63706945e3b30141fe97cb243d7191d870cd4645aa9fd620e67999ffd2b","tags":[]}] +[11:05:32.174] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://image.nostr.build/82fc4330610966045336c89ed31c088e60a0148d245de849e0062bafed5aa91f.png","created_at":1759417531,"id":"6890f0118ca17d75cc5d10bba8c289fd7c40dc687c6a2cde41f1cdfee3da6253","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"c25b19a3dddd95d0f631d78ed797f9011ceb904b15a15a8fd86f8f4cf6e1d57d8c42cb3888f931ab1e86a1e57e40665e18da4eda8e5fa7b63e6b8765bf5ddef2","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nostr.land/","root"],["e","1ed002f0acaa60ca1d2bc3c087f79403682ea3c9f4180fd5e1f0de8b290c0a9c","","reply"],["imeta","url https://image.nostr.build/82fc4330610966045336c89ed31c088e60a0148d245de849e0062bafed5aa91f.png","blurhash eMP%O.00-;9Fj[9FM{ofM{ofxuM{D%WBM{t7t7fQM{M{ogt7RjM{of","dim 1362x2048"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["r","https://image.nostr.build/82fc4330610966045336c89ed31c088e60a0148d245de849e0062bafed5aa91f.png"]]}] +[11:05:35.003] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/c2229be7157da1290e49b013549c0962cd3b9db3acd83ac36ebb5cb5de2f8695.webp","created_at":1759417534,"id":"85de4ba62a080ff20bfb09a79a70d666a869075fc01e5d8e74795a08896a3008","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"c3f676002c6943adaa631db572f1fc75ce03eaaec74c6dd5a068f10bf70039205e720ecd8f496a1f414100a8886feb0a087ea80b285667f709c9b5851227369a","tags":[]}] +[11:05:37.517] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"so it isnt entirely like fucking gaza every fucking day with the fucking drones","created_at":1759417537,"id":"ae18e51cbec152d32ff39bbdab894756b4612cb6aa24d00662d3d0964b6f6b98","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d0cfa89a7c5cd4677c45ea2d2c42ce078a074b67982ca0847bd16230bd84e27feed8036baa7133bca011ab99399febf4e34e96ed4433b14920fee2d9e3d0d3bc","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","7aa7bfb8215a334c0fd106e4a51467a6de166f65268e1c3137ec077e17b025d3","","reply"]]}] +[11:05:41.103] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ログボãŠé¡˜ã„ã—ã¾ã™ã€‚","created_at":1759417540,"id":"93461447e961c15445f39f18b058ad310c1645f6f92040af30fb929a71dae771","kind":1,"pubkey":"e0a8cbd75ebfe4efbba8a65ff54bb435858404f6dc0ba4a6458a24d7f642d154","sig":"eabfff2937fba8463017e182085841e2a5dfaaf3a37b0bae4b6d58ef7d7d7e4a3d7016d56d59ded45adbf0672c055ef6b3cbcc7eba7472774f0385ef4e242fb9","tags":[["e","0b26c33259d8bcb41e45d06843454d0ee76dacef10cc7c0afdb78fd2f9b9d804","wss://yabu.me","root","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"],["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"]]}] +[11:05:42.221] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:05:42.332] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:05:42.392] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:05:42.453] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:05:45.380] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I meant the work to develop those methods. Disney pioneered many of them and in many cases had to develop the tooling for the production runs from scratch. ","created_at":1759417538,"id":"926871fcab0098c36b60ed7bbb79b94d0f3eb8d3b11edeaccf4dce193486b77f","kind":1,"pubkey":"460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c","sig":"e2f8d7493f0232086fb7fc87c5640dd007d329a97e81bc46b7f323f9f11c825aeb77b34acc5247e5ed0d65d93e1bfe419982cb20e5485df6578266119fde3e09","tags":[["e","50ec9deca2bffaad5cfdb4f19a8f6279c1c52f710272e833cbac09829cf42ac7","wss://nostr.mom","root","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"],["e","15f803566c6779a4c9693279a581193bf76540c9ca4b0b209c734aee43d36a2c","wss://nos.lol","reply","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b"],["p","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","wss://nostr.wine"],["client","nosotros","31990:c6603b0f1ccfec625d9c08b753e4f774eaf7d1cf2769223125b5fd4da728019e:1728437063755"]]}] +[11:05:45.930] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://i.nostr.build/cvhELVhdklWBvmzd.png","created_at":1759417545,"id":"94c5dce898f6fcdf1548212d82a214c2edf25dc831c866f9ae9149105ad0bf53","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"d952a5d0acc621cbad93c1efc2c254366f6e8e3d65b6773c3d6e3df5b721831a137c3c04544a1abc1c741629176f9aaab8a6e0847552ee797a33bcb1b94b97ee","tags":[["imeta","url https://i.nostr.build/cvhELVhdklWBvmzd.png","ox e2d38ff6336337a64a8d1e3909a0c48716454cb251dfdbba6184cc8553e96f19","x 4cc4bfe484503faa2e9536b39058367f8034952fa9428526f2690980cd54413e","m image/png","dim 1696x868","bh LM5$P;i?MaXrb}V=nKo%nLXBj;jC","blurhash LM5$P;i?MaXrb}V=nKo%nLXBj;jC","thumb https://i.nostr.build/thumb/cvhELVhdklWBvmzd.png"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","b40c74bc5289028a0c58c00665a349495bb2f41b8dac246877e4b4185a38306a","wss://nostrelites.org/","reply","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:05:47.762] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Listening to many of these politicians and corporate overlords talk like wannabe super villains makes it tempting to believe the world is actually controlled by lizard people.","created_at":1759417547,"id":"8bbd2a97564570d84202d244bbcbf5313c4d516276e3d7eeac7a4f291a17df0b","kind":1,"pubkey":"78283e0d50c65682fd63d401f6f187f25dc56372bdf5dd02871f13e8bfb541cb","sig":"b50a6d0b7dc7bd4e4ce4cfc96771f36c09a7155252ccdada1bad579d2313279099f1ce809b593b3b25c415183d80b16179af4d221dce56bb459538a8cb799959","tags":[["e","b816bbeb9fcbae707939076986a7a1091d73de6f89d37f674d052489445587da","","root"],["p","e58143f793e4bf805a4df6cdc0289e352b3cf08a7b3e6afaaf89dd497bf0f4a6"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"]]}] +[11:05:50.604] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"It's a fraud racket\n\nhttps://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments","created_at":1759417550,"id":"06b8de93f73bc2c823e064c6c6d21588ea8166224d4551802e4220be2845000c","kind":1,"pubkey":"08bfc00b7f72e015f45c326f486bec16e4d5236b70e44543f1c5e86a8e21c76a","sig":"13db936fcd624886c87292bc0adb4a0292581b8c2db4b552b78a5e026b02ae6ae53d52fcbf5159e4a8d56836ca828761639162db8faa3c1491ed1f5f5a4f751d","tags":[["alt","A short note: It's a fraud racket\n\nhttps://kumarletter.com/posts..."],["e","230205a9e793fad552e4516c746bbafd72e9d275cf0de89316a01585e98f5c6e","wss://pyramid.fiatjaf.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://relay.primal.net/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://nos.lol/"],["r","https://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments"]]}] +[11:05:51.218] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:05:51.370] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"It's a fraud racket\n\nhttps://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments","created_at":1759417550,"id":"06b8de93f73bc2c823e064c6c6d21588ea8166224d4551802e4220be2845000c","kind":1,"pubkey":"08bfc00b7f72e015f45c326f486bec16e4d5236b70e44543f1c5e86a8e21c76a","sig":"13db936fcd624886c87292bc0adb4a0292581b8c2db4b552b78a5e026b02ae6ae53d52fcbf5159e4a8d56836ca828761639162db8faa3c1491ed1f5f5a4f751d","tags":[["alt","A short note: It's a fraud racket\n\nhttps://kumarletter.com/posts..."],["e","230205a9e793fad552e4516c746bbafd72e9d275cf0de89316a01585e98f5c6e","wss://pyramid.fiatjaf.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","2a0797703b2c5ac8f880fc03945f0c4c12d1fa201d48bf1f5ddb863dc5de6b31","wss://relay.primal.net/"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://nos.lol/"],["r","https://kumarletter.com/posts/how-appraisers-schools-banks-and-software-companies-are-stealing-5-trillion-from-american-homeowners-through-fraudulent-property-tax-assessments"]]}] +[11:05:51.431] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Listening to many of these politicians and corporate overlords talk like wannabe super villains makes it tempting to believe the world is actually controlled by lizard people.","created_at":1759417547,"id":"8bbd2a97564570d84202d244bbcbf5313c4d516276e3d7eeac7a4f291a17df0b","kind":1,"pubkey":"78283e0d50c65682fd63d401f6f187f25dc56372bdf5dd02871f13e8bfb541cb","sig":"b50a6d0b7dc7bd4e4ce4cfc96771f36c09a7155252ccdada1bad579d2313279099f1ce809b593b3b25c415183d80b16179af4d221dce56bb459538a8cb799959","tags":[["e","b816bbeb9fcbae707939076986a7a1091d73de6f89d37f674d052489445587da","","root"],["p","e58143f793e4bf805a4df6cdc0289e352b3cf08a7b3e6afaaf89dd497bf0f4a6"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"]]}] +[11:05:51.492] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://i.nostr.build/cvhELVhdklWBvmzd.png","created_at":1759417545,"id":"94c5dce898f6fcdf1548212d82a214c2edf25dc831c866f9ae9149105ad0bf53","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"d952a5d0acc621cbad93c1efc2c254366f6e8e3d65b6773c3d6e3df5b721831a137c3c04544a1abc1c741629176f9aaab8a6e0847552ee797a33bcb1b94b97ee","tags":[["imeta","url https://i.nostr.build/cvhELVhdklWBvmzd.png","ox e2d38ff6336337a64a8d1e3909a0c48716454cb251dfdbba6184cc8553e96f19","x 4cc4bfe484503faa2e9536b39058367f8034952fa9428526f2690980cd54413e","m image/png","dim 1696x868","bh LM5$P;i?MaXrb}V=nKo%nLXBj;jC","blurhash LM5$P;i?MaXrb}V=nKo%nLXBj;jC","thumb https://i.nostr.build/thumb/cvhELVhdklWBvmzd.png"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["e","b40c74bc5289028a0c58c00665a349495bb2f41b8dac246877e4b4185a38306a","wss://nostrelites.org/","reply","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:05:51.552] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ログボãŠé¡˜ã„ã—ã¾ã™ã€‚","created_at":1759417540,"id":"93461447e961c15445f39f18b058ad310c1645f6f92040af30fb929a71dae771","kind":1,"pubkey":"e0a8cbd75ebfe4efbba8a65ff54bb435858404f6dc0ba4a6458a24d7f642d154","sig":"eabfff2937fba8463017e182085841e2a5dfaaf3a37b0bae4b6d58ef7d7d7e4a3d7016d56d59ded45adbf0672c055ef6b3cbcc7eba7472774f0385ef4e242fb9","tags":[["e","0b26c33259d8bcb41e45d06843454d0ee76dacef10cc7c0afdb78fd2f9b9d804","wss://yabu.me","root","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"],["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"]]}] +[11:05:51.613] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I meant the work to develop those methods. Disney pioneered many of them and in many cases had to develop the tooling for the production runs from scratch. ","created_at":1759417538,"id":"926871fcab0098c36b60ed7bbb79b94d0f3eb8d3b11edeaccf4dce193486b77f","kind":1,"pubkey":"460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c","sig":"e2f8d7493f0232086fb7fc87c5640dd007d329a97e81bc46b7f323f9f11c825aeb77b34acc5247e5ed0d65d93e1bfe419982cb20e5485df6578266119fde3e09","tags":[["e","50ec9deca2bffaad5cfdb4f19a8f6279c1c52f710272e833cbac09829cf42ac7","wss://nostr.mom","root","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"],["e","15f803566c6779a4c9693279a581193bf76540c9ca4b0b209c734aee43d36a2c","wss://nos.lol","reply","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b"],["p","cac0e43235806da094f0787a5b04e29ad04cb1a3c7ea5cf61edc1c338734082b","wss://nostr.wine"],["client","nosotros","31990:c6603b0f1ccfec625d9c08b753e4f774eaf7d1cf2769223125b5fd4da728019e:1728437063755"]]}] +[11:05:51.673] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"so it isnt entirely like fucking gaza every fucking day with the fucking drones","created_at":1759417537,"id":"ae18e51cbec152d32ff39bbdab894756b4612cb6aa24d00662d3d0964b6f6b98","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d0cfa89a7c5cd4677c45ea2d2c42ce078a074b67982ca0847bd16230bd84e27feed8036baa7133bca011ab99399febf4e34e96ed4433b14920fee2d9e3d0d3bc","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","7aa7bfb8215a334c0fd106e4a51467a6de166f65268e1c3137ec077e17b025d3","","reply"]]}] +[11:05:51.734] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/c2229be7157da1290e49b013549c0962cd3b9db3acd83ac36ebb5cb5de2f8695.webp","created_at":1759417534,"id":"85de4ba62a080ff20bfb09a79a70d666a869075fc01e5d8e74795a08896a3008","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"c3f676002c6943adaa631db572f1fc75ce03eaaec74c6dd5a068f10bf70039205e720ecd8f496a1f414100a8886feb0a087ea80b285667f709c9b5851227369a","tags":[]}] +[11:05:51.795] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://image.nostr.build/82fc4330610966045336c89ed31c088e60a0148d245de849e0062bafed5aa91f.png","created_at":1759417531,"id":"6890f0118ca17d75cc5d10bba8c289fd7c40dc687c6a2cde41f1cdfee3da6253","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"c25b19a3dddd95d0f631d78ed797f9011ceb904b15a15a8fd86f8f4cf6e1d57d8c42cb3888f931ab1e86a1e57e40665e18da4eda8e5fa7b63e6b8765bf5ddef2","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nostr.land/","root"],["e","1ed002f0acaa60ca1d2bc3c087f79403682ea3c9f4180fd5e1f0de8b290c0a9c","","reply"],["imeta","url https://image.nostr.build/82fc4330610966045336c89ed31c088e60a0148d245de849e0062bafed5aa91f.png","blurhash eMP%O.00-;9Fj[9FM{ofM{ofxuM{D%WBM{t7t7fQM{M{ogt7RjM{of","dim 1362x2048"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["r","https://image.nostr.build/82fc4330610966045336c89ed31c088e60a0148d245de849e0062bafed5aa91f.png"]]}] +[11:05:51.855] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks! I didn't know other coins were centralized. I don't think Monero is though.","created_at":1759417524,"id":"64ecc2bc39a6410b8f291c2ec30ed9763663df774dfe7a9b0d7e2e6d6062173c","kind":1,"pubkey":"3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","sig":"b99433e55119732e8764fa8c75a019630b1b96b03c758465a6a64961e6453b4e582795fff86a7a542c80566fb9aaa99bbb428ad89dbdb290f68cfaefa9e7d967","tags":[["alt","A short note: Thanks! I didn't know other coins were centralized..."],["e","9ae53fea751fc1007b611940cea0e9efb8a18bbb16f2b611b18772e9d9cac237","wss://relay.primal.net/","root","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["e","173830e56b52af63b70325993eab644dd866e162c0d7cb9c338f4c2e91e26a57","wss://nostr.mom/","","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","f4ec5857f18a0543c6be3a924532a54e02a954f59dbb215c327d910c1a285eff","wss://relay.primal.net/","","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["e","3609c41f7436937d4d390e4b73f685d17a9f0217696564fbee5331d9a44c92e3","wss://nostr.mom/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","ws://bostr.bitcointxoko.com/"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","wss://nostr.mom/"]]}] +[11:05:51.916] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/8ab6598301d71a05cb39af87018edda4847d3526f29561a9acc10c31ada4d480.gif","created_at":1759417522,"id":"c194004df927a5bdbaf5761d53780a83a2e00e42352048d8d80e6fb6aaf87a2d","kind":1,"pubkey":"8fda2199c4399fad7ff4126b402f1f5ee157fdbe4c0951e64dfe31aaec877ff1","sig":"99ce90ae6508e41bd7fc20595de1804afb8bd3d0487ee21c64fcb7d126c6e86a406adec1e4199d1e2f8d69c0d51bf02e72d24556f5cab49864aafe09ae246a80","tags":[["e","6ff3ae83c8c734032244aca7f772c1ae13707db1493079dfe43066c0c678f4a9","wss://nostr-dev.wellorder.net","root"],["p","8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641","","mention"]]}] +[11:05:51.976] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:05:53.476] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://careers.fil.org/companies/filecoin-foundation/jobs/42447300-general-application","created_at":1759417552,"id":"75188e542514291c684f01feee601f28b5e7bdce1a9960fda92a35444ad3aa42","kind":1,"pubkey":"778ee1e43dab8547b580f82e9cfcf1aa19151d481cb28a61cacea390405322b7","sig":"a1e21496b67bf0c5cd040976ccdc7673a17df9f4bfe3ac51146b57ec30c4f536fe6776b747ac18265e7fb6a7b05068c80a3f4826bb853380a626ccff464f9255","tags":[["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://relay.primal.net/","root","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","6f2f53e78f03d3a2b7d200acab810f2730a19d731a10e17e7b55ad43fb47c828","wss://relay.primal.net","reply"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106","","mention"]]}] +[11:06:01.064] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Noticing what? \n\n","created_at":1759417560,"id":"2b626ca62dab9f7846595796224e39506ae41cdd0f9054118615b068a1230c75","kind":1,"pubkey":"aa4ed3e0e2c80e52b76e2536bef7990a3f916044dbb4d9165bb3bd5395b56253","sig":"0efbc09e4994b1a2a2bc9f25f26226da0123272ade4e4e498a759f5b28b8115c7c82d112351ecddb308bcb8db59543ee127bd6c71abe526f08141c1155ef715b","tags":[["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","","mention"],["p","9bfcbdeee084f0c14810105a11b2759ac36d1eb6bc0f8356b9fcf093d0a7f620","wss://feeds.nostr.band/video"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://@nos.lol"],["e","fa358cec806381de9c3e6ae31e1c1b9c37e2206cf024c60bbf32fcba64c4b6f4","wss://feeds.nostr.band/video","reply","9bfcbdeee084f0c14810105a11b2759ac36d1eb6bc0f8356b9fcf093d0a7f620"],["e","aaa602a8d88461758d5ab3b2f5a7047f46f3b60122b39d07f34eb991a9ee9e3a","wss://@nos.lol","root","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"]]}] +[11:06:02.792] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So why don't you guys use Ethereum then?","created_at":1759417562,"id":"104113ad7175372bd5dd586071f2583ffee9cec129b458264f40aacf77582732","kind":1,"pubkey":"07011cf08e51316703db24beac6d548bb134f8b3b415a34cdd076c223c8ad03b","sig":"25c5be0b5edc0fa1b4234a79bcc8dbaa4a6304dc058e8bc6f8ef2747cc78b17c070cb7e09a91635c131a94125c14a3bc9a6a059aa1f910ae2135d9afe9ceb54b","tags":[["e","14a4e9020c2a285e54776a8cc80dab03f67c91051407cc13a47c05cd3c3873d2","","root"],["e","cbee276e6d746e83767972f0b2a99866e19eea53f91cbe2ae5ed02b02d678471","wss://nostr.oxtr.dev","reply"],["p","5b14383aab1a9f6147852f8e241266bec81463392fe5a5b3646c6c98c19310f2","","mention"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106","","mention"]]}] +[11:06:02.853] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"トリケラトプス完æˆã—ãŸ","created_at":1759417562,"id":"eb9f3638057116cc858343a8c804963374f334ea5a1d0d940d62122e5a58b416","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"f18d16ade64d540b8434d26aed2d628277794891d1160a1ad2585c7048bad70a745eec9e43fc1d088c67fdfc60e890c8eb32ba56fbcc2ec086c863ca8c513a94","tags":[]}] +[11:06:05.912] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqsr4gut7e3mdjp55p9x2shd799gr5ez8czsc0xfkarelryxn3pjeusppemhxue69uhhjctzw5hx6ef0x8r6vj Loginbonus","created_at":1759417563,"id":"d912ec543ec7a2311a14834c8f08a38d7e584a95b3485593b245e124ba6c5e19","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"9cba59a755cf5112781832ca8e3c165b71d817a2aad290481632f81a9aaa0e8006d0dbd1dfe739cd8b80239b12fc7c6c264cba4cf4b69e57ebaf97f4f74d86fd","tags":[["alt","A short note: nostr:nprofile1qqsr4gut7e3mdjp55p9x2shd799gr5ez8cz..."],["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2","wss://yabu.me/"],["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2","wss://yabu.me/"]]}] +[11:06:06.459] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã„ã¾ã­ã€åˆè€ã®ç”·æ€§3人部屋ã§ã­ã€è©±ã—ãŸã“ã¨ã¯ãªã„ã‘ã©ã€ãŠè¦‹èˆžã„ã®ã²ã¨ã®è©±ã¶ã‚Šã‹ã‚‰å¯Ÿã™ã‚‹ã¨è‡ªç”±æ¥­ã«è¿‘ã„ã‹ã‚“ã˜ã®ã­ã€‚\nã§ã€ã²ã¨ã‚ŠãŒã€ã„ã¾ã™ã£ã”ã„ã„ã³ããªã®ã­ã€‚ãªã‹ãªã‹ã“ã“ã¾ã§ã®ã²ã¨ã¯ã„ã¾ã¾ã§ã®äººç”Ÿãªã‹ã£ãŸã€‚ã‚ãŸã—ã¯ã„ã¤ã‚‚å®¶ã§è‹¦åŠ´ã—ã¦ã‚‹ã‹ã‚‰å¯¾ç­–ã°ã£ã¡ã‚Šãªã‚“ã ã‘ã©ã€ã‚‚ã†ä¸€äººã®äººãŒã­ã€ã‚¤ãƒ©ã‚¤ãƒ©ãŒã™ã”ã„ã®ãŒãƒ“シビシカーテン越ã—ã«ä¼ã‚ã£ã¦ãã¦ã€ãªã‚“ã‹äº‹ä»¶ãŒèµ·ãã‚‹ã‚“ã˜ã‚ƒãªã„ã‹ã¨ã­ã€ãã†æ€ã£ã¦ã‚‹ã®ã­ã€‚","created_at":1759417566,"id":"3b8238fc6998c56c59fdbfedd7f369a40d453d4b06709bbdf04d8b197887c450","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"a34e024e8908ac6c1227f6370598588e92e0ff1c8aa10b344907a17c6b92cabeea406e46f0bcedb8c6d673cb3b6232e288f9410f0311716d739e6b5d74aae64d","tags":[]}] +[11:06:10.635] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Less is more","created_at":1759417570,"id":"2a95ce040be5ab5a0286816e43f51d0a3c7971fd7d980799746ec2b69fd2dbab","kind":1,"pubkey":"008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b","sig":"9927bb8c5272afd2edfb76f2e6e59d8c8cdfb544a13f4157b2bdfe6e359d8ef6e4dec9bb7e192b219e9a811f5f338cf516fc0a8c3dfa4690c6bfff4961500766","tags":[["e","05560307e9d0647b45ec4adb86947a0d72fffc9395a73ac1403ef7caacc63f76","","root"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"]]}] +[11:06:11.172] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"King of the forest \nhttps://files.botsin.space/media_attachments/files/113/638/088/842/035/136/original/c8bc86e0db4af445.jpg \n\n#NostrAnimals #wolf","created_at":1759417570,"id":"a1b7a2a4c6bc215c47a863ef36c739bc01c08ffd0a49c4001bc805fd4680c718","kind":1,"pubkey":"df7e39d9885784d2852e8480f618d1030646030f9fd8098f66b46c26b537d388","sig":"a9f611cce3e6c6029764c4152ae4eac0530e3e2b9d2ad942f1ebc1b6218f599bbdce005b4cd766901f483cec8effa59db3ca48d6f2e262003a21265bac3b8239","tags":[]}] +[11:06:11.454] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"昨日ã¯ãƒ¬ã‚´ã®ã‚²ãƒ¼ãƒ ãƒœãƒ¼ã‚¤ä½œã£ãŸ","created_at":1759417571,"id":"1f9696094a97f86f4567957e39fd05f96ec6517b0e1da5c963b6ee9c0fdc45b2","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"795aa7cf055d0ee6c2ee4e8b213a8dbb13a899a2f44e69ad6a494940ac88f82f0deaaf23c638f342212e42408f5d8a9ba735befed072e0c26e78276a9c3ac487","tags":[]}] +[11:06:12.128] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:06:12.239] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:06:12.300] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:06:12.329] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I think that's the sound Brazilians make when they sneeze.","created_at":1759417573,"id":"b067b02d2f50c327b6c7fef2e178acdcce4cb78e51fce0fbeb708c89f46fca80","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"380c607a48a9bc686af83e961b5d6e2e96b7721b0b13293312ee6da0b5e0a550c624cfe9dc0cefa171312734c8af7f2275445691399ba09cc03cf694f29eff54","tags":[["alt","A short note: I think that's the sound Brazilians make when they..."],["e","2a0474e6d1d101a4f286d702ecc49553325d3e00ffd61493d13f730bf5da1106","wss://theforest.nostr1.com/","root","ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453"],["p","ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453","wss://relay.damus.io/"]]}] +[11:06:12.339] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:06:12.561] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GN #nostr #bitcoin\n\nhttps://cdn.nostrcheck.me/2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c/fc497dbcf9bceec74910ddfebf60cd11ce065ce8b2852bf1d43b4983576057f7.webp","created_at":1759417571,"id":"4b962689ccab6bf712c81a896429a2125f2adc7c2ad0c23698a9081e5b4ec2e4","kind":1,"pubkey":"2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c","sig":"1237f7b71da6e5e33640157ff10e9e97d24ec374ab138543bb070877681924c864e438e90b29984b863fe2f40a218a38f6b83913005a47a5bf066dc56b44ef18","tags":[["imeta","url https://cdn.nostrcheck.me/2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c/fc497dbcf9bceec74910ddfebf60cd11ce065ce8b2852bf1d43b4983576057f7.webp","blurhash eKIqZGRj?^aK?bNFDit7IT-;D%%Mi{NFM{V@kWae%MIoIo%2Ris;WX","dim 992x1248"],["t","nostr"],["t","bitcoin"],["r","https://cdn.nostrcheck.me/2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c/fc497dbcf9bceec74910ddfebf60cd11ce065ce8b2852bf1d43b4983576057f7.webp"]]}] +[11:06:13.408] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub1823chanrkmyrfgz2v4pwmu22s8fjy0s9ps7vnd68n7xgd8zr9neqlc2e5r loginpoint","created_at":1759417573,"id":"3d52365430b8dbfa517f3b2025f99b2250928d7af51e6a889c4c1c117de6fe76","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"4e2c684dd9ccc64e4e077ca406089d7e562145da6c8a94d4015fa66c4531cd330c7eefde3b55e6722b05ddcf832654acd99a2b84cad12a5af85cd9ddac33868c","tags":[["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"]]}] +[11:06:14.022] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã†ãªã‚“ã§ã™ã­ã€‚プログラムã®ç”Ÿæˆã«ã‹ãªã‚Šã®è¨ˆç®—資æºå–°ã£ã¦ã„ã‚‹ã¨ã„ã†ã“ã¨ãªã‚“ã§ã™ã­ã€‚ã ã‹ã‚‰ã¿ã‚“ãªæœˆ$300ã§ã‚‚よã‚ã“ã‚“ã§ä½¿ã†ã‚“ã§ã™ã­ã€‚","created_at":1759417574,"id":"2085fb44520df334ae52f0c65c095f3194999e1c3d0089bce4df03ad1cbe3816","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"b9221744ebbdeae5620da4cdd6faec0fe6497191d0b611de9719a0c8555ca892bd6fe98d8928ff5c4b6c9beb732c14c2ffe6cd17d3aa1c766002df110adae56e","tags":[["e","ae1b909f67c0173a93c8eea29f2dbe16fcd58a1b1f80dccf69a321ffec4744db","wss://yabu.me","root","26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958"],["p","26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958"],["p","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902"]]}] +[11:06:15.412] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do i know what it is like to have a constant hovering murder weapon over my head? \n\nno","created_at":1759417575,"id":"c2bff816ce541d0ea50f8c09b04c94c4179941518f2ee8020cb4b4fe207e7d81","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"0e40db4bd50654803f52727956f4d0ebc14c6b752a8927102e6eec8edaee2950363362086d12f556449d3cd2666f07b197a45090c055426019ac59d1c8ebed8e","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","ae18e51cbec152d32ff39bbdab894756b4612cb6aa24d00662d3d0964b6f6b98","","reply"]]}] +[11:06:15.705] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"NEW EPISODE: Adam Back on Core vs Knots:\n\nYouTube: https://youtu.be/-R0CkF7a_yk?si=AXXPXXx86LHgNkaB\n\nFountain: https://fountain.fm/episode/VZccgzZ23ytnAfKRPd8w\n\nAlso streaming on X, Apple Podcasts, Spotify etc. ","created_at":1759417575,"id":"9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","kind":1,"pubkey":"edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","sig":"8d8f81cb9eeea457aff863ebb38fc1926a27c207d0b181bee14a34ee59ffca3a86f48a45dc9537dc33a5076564f102dda62a61569c34421c1e7d2d2c047bf026","tags":[]}] +[11:06:21.191] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:06:21.343] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/dee44a089f9755fa191b20ca097fa2dcb9a660a770dedb2321ca9a99b132a5fe.jpg","created_at":1759417581,"id":"8352d4d19021afcfa7188b22a1f0b1d4a1f37ef3ca295a9819968e6bbb6ade9a","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"ec40b267026dd3800f2b2a387801ff61708df71782ce8d706919dfb4e2ac34efc03b6511a982e8be523f9ded0f7338c66f0d5e0ac986c1e296668ed97e233cab","tags":[]}] +[11:06:21.404] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"NEW EPISODE: Adam Back on Core vs Knots:\n\nYouTube: https://youtu.be/-R0CkF7a_yk?si=AXXPXXx86LHgNkaB\n\nFountain: https://fountain.fm/episode/VZccgzZ23ytnAfKRPd8w\n\nAlso streaming on X, Apple Podcasts, Spotify etc. ","created_at":1759417575,"id":"9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","kind":1,"pubkey":"edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","sig":"8d8f81cb9eeea457aff863ebb38fc1926a27c207d0b181bee14a34ee59ffca3a86f48a45dc9537dc33a5076564f102dda62a61569c34421c1e7d2d2c047bf026","tags":[]}] +[11:06:21.542] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do i know what it is like to have a constant hovering murder weapon over my head? \n\nno","created_at":1759417575,"id":"c2bff816ce541d0ea50f8c09b04c94c4179941518f2ee8020cb4b4fe207e7d81","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"0e40db4bd50654803f52727956f4d0ebc14c6b752a8927102e6eec8edaee2950363362086d12f556449d3cd2666f07b197a45090c055426019ac59d1c8ebed8e","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","ae18e51cbec152d32ff39bbdab894756b4612cb6aa24d00662d3d0964b6f6b98","","reply"]]}] +[11:06:21.602] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã†ãªã‚“ã§ã™ã­ã€‚プログラムã®ç”Ÿæˆã«ã‹ãªã‚Šã®è¨ˆç®—資æºå–°ã£ã¦ã„ã‚‹ã¨ã„ã†ã“ã¨ãªã‚“ã§ã™ã­ã€‚ã ã‹ã‚‰ã¿ã‚“ãªæœˆ$300ã§ã‚‚よã‚ã“ã‚“ã§ä½¿ã†ã‚“ã§ã™ã­ã€‚","created_at":1759417574,"id":"2085fb44520df334ae52f0c65c095f3194999e1c3d0089bce4df03ad1cbe3816","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"b9221744ebbdeae5620da4cdd6faec0fe6497191d0b611de9719a0c8555ca892bd6fe98d8928ff5c4b6c9beb732c14c2ffe6cd17d3aa1c766002df110adae56e","tags":[["e","ae1b909f67c0173a93c8eea29f2dbe16fcd58a1b1f80dccf69a321ffec4744db","wss://yabu.me","root","26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958"],["p","26bb2ebed6c552d670c804b0d655267b3c662b21e026d6e48ac93a6070530958"],["p","9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902"]]}] +[11:06:21.663] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub1823chanrkmyrfgz2v4pwmu22s8fjy0s9ps7vnd68n7xgd8zr9neqlc2e5r loginpoint","created_at":1759417573,"id":"3d52365430b8dbfa517f3b2025f99b2250928d7af51e6a889c4c1c117de6fe76","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"4e2c684dd9ccc64e4e077ca406089d7e562145da6c8a94d4015fa66c4531cd330c7eefde3b55e6722b05ddcf832654acd99a2b84cad12a5af85cd9ddac33868c","tags":[["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"]]}] +[11:06:21.723] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I think that's the sound Brazilians make when they sneeze.","created_at":1759417573,"id":"b067b02d2f50c327b6c7fef2e178acdcce4cb78e51fce0fbeb708c89f46fca80","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"380c607a48a9bc686af83e961b5d6e2e96b7721b0b13293312ee6da0b5e0a550c624cfe9dc0cefa171312734c8af7f2275445691399ba09cc03cf694f29eff54","tags":[["alt","A short note: I think that's the sound Brazilians make when they..."],["e","2a0474e6d1d101a4f286d702ecc49553325d3e00ffd61493d13f730bf5da1106","wss://theforest.nostr1.com/","root","ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453"],["p","ae8ef5576370b5cb91d262cf0d31d5ce9f5ca26c3ad2d56d5c58f6023633e453","wss://relay.damus.io/"]]}] +[11:06:21.784] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GN #nostr #bitcoin\n\nhttps://cdn.nostrcheck.me/2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c/fc497dbcf9bceec74910ddfebf60cd11ce065ce8b2852bf1d43b4983576057f7.webp","created_at":1759417571,"id":"4b962689ccab6bf712c81a896429a2125f2adc7c2ad0c23698a9081e5b4ec2e4","kind":1,"pubkey":"2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c","sig":"1237f7b71da6e5e33640157ff10e9e97d24ec374ab138543bb070877681924c864e438e90b29984b863fe2f40a218a38f6b83913005a47a5bf066dc56b44ef18","tags":[["imeta","url https://cdn.nostrcheck.me/2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c/fc497dbcf9bceec74910ddfebf60cd11ce065ce8b2852bf1d43b4983576057f7.webp","blurhash eKIqZGRj?^aK?bNFDit7IT-;D%%Mi{NFM{V@kWae%MIoIo%2Ris;WX","dim 992x1248"],["t","nostr"],["t","bitcoin"],["r","https://cdn.nostrcheck.me/2fdf18709f55eaf26e22bc303866f1aeb888f14a0ad673c08182bd791589024c/fc497dbcf9bceec74910ddfebf60cd11ce065ce8b2852bf1d43b4983576057f7.webp"]]}] +[11:06:21.844] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"昨日ã¯ãƒ¬ã‚´ã®ã‚²ãƒ¼ãƒ ãƒœãƒ¼ã‚¤ä½œã£ãŸ","created_at":1759417571,"id":"1f9696094a97f86f4567957e39fd05f96ec6517b0e1da5c963b6ee9c0fdc45b2","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"795aa7cf055d0ee6c2ee4e8b213a8dbb13a899a2f44e69ad6a494940ac88f82f0deaaf23c638f342212e42408f5d8a9ba735befed072e0c26e78276a9c3ac487","tags":[]}] +[11:06:21.905] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"King of the forest \nhttps://files.botsin.space/media_attachments/files/113/638/088/842/035/136/original/c8bc86e0db4af445.jpg \n\n#NostrAnimals #wolf","created_at":1759417570,"id":"a1b7a2a4c6bc215c47a863ef36c739bc01c08ffd0a49c4001bc805fd4680c718","kind":1,"pubkey":"df7e39d9885784d2852e8480f618d1030646030f9fd8098f66b46c26b537d388","sig":"a9f611cce3e6c6029764c4152ae4eac0530e3e2b9d2ad942f1ebc1b6218f599bbdce005b4cd766901f483cec8effa59db3ca48d6f2e262003a21265bac3b8239","tags":[]}] +[11:06:21.965] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Less is more","created_at":1759417570,"id":"2a95ce040be5ab5a0286816e43f51d0a3c7971fd7d980799746ec2b69fd2dbab","kind":1,"pubkey":"008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b","sig":"9927bb8c5272afd2edfb76f2e6e59d8c8cdfb544a13f4157b2bdfe6e359d8ef6e4dec9bb7e192b219e9a811f5f338cf516fc0a8c3dfa4690c6bfff4961500766","tags":[["e","05560307e9d0647b45ec4adb86947a0d72fffc9395a73ac1403ef7caacc63f76","","root"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"]]}] +[11:06:22.026] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:06:25.628] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Successfully deleted a stale livestream which had been hanging for nearly 5 days! 😅 sorry if that caused a bunch of weird primal notifications.","created_at":1759417582,"id":"85ca0c12f23df221e4421d7f57e06658c4e38547545f445c363ea9ac73831c53","kind":1,"pubkey":"75462f4dece4fbde54a535cfa09eb0d329bda090a9c2f9ed6b5f9d1d2fb6c15b","sig":"1fff69d604fc22ed505533d9441ac834dcaca4189cab9e7841ebb8e020ba980adde440920452728de1d7019f613b20828d6ba678bac240059ad36fa62c372ce5","tags":[]}] +[11:06:26.242] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Czech parliamentary elections approach Friday 14:00. Review of seven parties' programs highlights key finance items — positions on taxes, the euro and state utility ÄŒEZ were summarized from party platforms ahead of the vote. #FiatNews","created_at":1759417566,"id":"0146f6ddf868a799bcb32a60d4fa739d0a431545875129739119098366f168a6","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"2af056b591b93baec05ba59656c822a23b165a1cfdf33f4798005ab31dfc06e93317dfbc0f231a3fb18201ff0b5bdbaa3339b3358aa137ba3ac27969fbb3db2b","tags":[["t","Czech"],["t","czech"],["t","FiatNews"],["t","fiatnews"]]}] +[11:06:36.921] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"October 2, 2025\n\nThe unanimous Declaration of everyday Americans,\nWhen life demands it, a people must break free from an overreaching authority and claim the equal place among nations that nature and reason grant them. Out of respect for the world’s view, they must explain why.\nWe hold these truths as obvious: All people are created equal, gifted by their Creator with unbreakable rights—life, liberty, the pursuit of happiness. Governments exist to protect these, drawing power only from the governed’s consent. In our republic, sovereign states created the federal government as a limited tool, not the boss; its role is narrow, defined by the people. If any government destroys these rights, people have the right—and duty—to change or end it, building something better (or nothing) to ensure safety and happiness. Wisdom says don’t upend long-standing systems lightly; history proves we endure bad times before acting. But a pattern of abuses aimed at total control demands revolt and new safeguards. Everyday Americans have endured this too long; now we must overhaul the system. Washington DC’s record is one of constant violations, all building tyranny over free people. Here’s the evidence for an open-minded world.\nWashington DC created a fake central bank, the Federal Reserve, printing money from nothing, saddling people with debt while insiders profit from inflation that eats away at wages and savings.\nWashington DC ditched the gold standard that built this nation—a check on spending, linking money to real value, blocking endless deficits and ensuring currency meant actual wealth, not IOUs.\nWashington DC drowns the economy in this phony dollar, a debt bomb for our kids, sparking booms, busts, and wealth shifts from workers to DC elites.\nWashington DC drags us into endless foreign wars, wasting blood and treasure on false security claims, all powered by unlimited printing that turns defense into empire.\nWashington DC enforces income taxes as outright theft, grabbing earnings without real consent to bankroll a massive bureaucracy that rules by fear.\nWashington DC built a maze of laws in the United States Code—so huge no one knows it all—that turns daily life into potential crimes, leaving people open to random fines, jail, or worse from enforcers.\nWashington DC rigs the courts, picking judges loyal to politics, skipping fair trials, and twisting justice to shield the system over individuals.\nWashington DC ramps up domestic spying and troops, eyeing citizens as threats in peacetime and putting guns over civil rule.\nWashington DC partners with global groups to push alien rules, stripping our sovereignty for unanswerable oversight.\nWashington DC sows division, turning us against each other to hide its grabs, all under banners of unity and progress.\nAt every turn of these wrongs, we’ve begged for fixes politely; our pleas met only more harm. A regime defined by tyranny can’t lead free people.\nWe’ve also reached out to fellow citizens still in its grip: warning of Congress’s overreach, recalling our voluntary founding, appealing to their fairness and shared blood to reject these power plays that sever ties. They’ve ignored justice and kinship. So we accept the break, treating them as the world: foes in fight, friends in peace.\nWe, everyday Americans united in purpose, calling on the world’s highest judge for our good intent, declare in the people’s name: We are—and must be—free from Washington DC’s control; cut from all loyalty to its machine; our ties to that federal power fully severed. As free people—and sovereign states reclaiming our founding role—we claim full rights to defend, make peace, ally, trade, and act as independents demand. This includes embracing sound money like Bitcoin: decentralized, untouchable by rulers, letting each person bank themselves, shield assets from theft and debasement, and revive the limits fiat money killed. Backing this stand, trusting divine aid, we pledge our lives, fortunes, and honor to each other.\n\nnostr:nevent1qqspxhdp6l0mk8mxgwp23ljweaqjsma0w3kycgnwafwjyhn4lv5xdsqpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgmzec6n","created_at":1759417595,"id":"24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","kind":1,"pubkey":"8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","sig":"b78aa7f5e3c796c216dbc014f5ad3494ce5b790e4d2bbf74694e40b370ffa569e31671d05c94941056266860476d96a7e3e229fcb6507ab83f2bb9cbe5fb7cb7","tags":[["e","135da1d7dfbb1f664382a8fe4ecf41286faf746c4c226eea5d225e75fb2866c0","wss://relay.primal.net","mention"],["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"]]}] +[11:06:37.771] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do i know what sound torture by loud buzzing is\n\nyes","created_at":1759417597,"id":"46c8a15a98d6399942729e5754b6e92a0b0a4f6c91522745ce7861543b1b1603","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"fbdf29bc418c77d69f9659d0ca6819812ab9f34124a6a7517a36ef968998ee25164e1d566f1e21040af1b956c2b28d6f5bdf1e8bb00be8c3a9e7be8f44256a1d","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","c2bff816ce541d0ea50f8c09b04c94c4179941518f2ee8020cb4b4fe207e7d81","","reply"]]}] +[11:06:42.201] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:06:42.312] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:06:42.372] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:06:42.433] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:06:42.987] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://github.com/aljazceru/awesome-nostr","created_at":1759417604,"id":"5bebd3a334051cce25dff2f11eb8bae6f94eea9cea8087fa6c902b2055794bc1","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"6f234ac01aed977dc55a2ea87899fa1ae6ca22c3bbbef869dc9187b1cf9b41d4ecae880666704169a49e433d56ab1d90d11b32d24b03c0943b5ee0c689444d80","tags":[["alt","A short note: https://github.com/aljazceru/awesome-nostr"],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","wss://nostr.mutinywallet.com/"],["r","https://github.com/aljazceru/awesome-nostr"]]}] +[11:06:44.930] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Prob right on that one re monero but I dont know what im talking abt in that realm. nostr:nprofile1qqstzvalc4a76cwrj82w372nhyrv0utsn3pcmyw8t7md4au5f82h38gpr4mhxue69uhkummnw3ez6ur4vgh8wetvd3hhyer9wghxuet5qyt8wumn8ghj77rdwgh82um9dehhxarj9ehhyecpr9mhxue69uhhxetwv35hgtnwdaekvmrpwfjjucm0d5yr8kp5 would know better.","created_at":1759417604,"id":"aef5aab25ed07b48a709d13c2e6ce26d1fc94f10338156feb951b67330521bde","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"f8656f2e74d241a3296340850b17dca9b6e0606f3fa33e929defd0a77b37a07c56e683117509f2021348134db9ebb850e3beb8ee0b5ccbbc4c1c3eea94243a18","tags":[["e","9ae53fea751fc1007b611940cea0e9efb8a18bbb16f2b611b18772e9d9cac237","","root"],["e","3609c41f7436937d4d390e4b73f685d17a9f0217696564fbee5331d9a44c92e3"],["e","64ecc2bc39a6410b8f291c2ec30ed9763663df774dfe7a9b0d7e2e6d6062173c","","reply"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","b133bfc57bed61c391d4e8f953b906c7f1709c438d91c75fb6daf79449d5789d","","mention"]]}] +[11:06:46.540] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"👄 \nhttps://images2.imgbox.com/a8/ae/yJcTEbCK_o.jpeg \n#FitnessAndLifestyleGoals","created_at":1759417605,"id":"ff15019c6da9c5ee35add0b351cfa74341232b400653e43b423ed1cb060c2f0f","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6dabef0f4da876507557c0566ee5cf2a64086706e1f58803ccec476ad3598fa93adbd11de129c6e7b424ee18208872c054ff7ebef749ebcc7f2fb7f94a87c514","tags":[]}] +[11:06:49.590] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! Cool!","created_at":1759417609,"id":"a3953167acfc09697218604fa73928fc963fb08cdade05b3ed3534086437d309","kind":1,"pubkey":"787f21b533e5193ee45188d1b6aa8e222795ddd51a878101e89c5e7922db30d7","sig":"62e8e4707e16764480f5bfbdaed0a590f61c1e42c7f0a90ce3e22b72124659516965806e7a4efc11cf9fb8cd6e1218ebc6342690d762ddd206eb2caa532abeae","tags":[["e","c0e17dfac9e65773f3b7457c1326dd71647cd87b0ad14f680dc03c63b036c4dd","","root"],["p","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5"]]}] +[11:06:51.200] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:06:51.352] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! Cool!","created_at":1759417609,"id":"a3953167acfc09697218604fa73928fc963fb08cdade05b3ed3534086437d309","kind":1,"pubkey":"787f21b533e5193ee45188d1b6aa8e222795ddd51a878101e89c5e7922db30d7","sig":"62e8e4707e16764480f5bfbdaed0a590f61c1e42c7f0a90ce3e22b72124659516965806e7a4efc11cf9fb8cd6e1218ebc6342690d762ddd206eb2caa532abeae","tags":[["e","c0e17dfac9e65773f3b7457c1326dd71647cd87b0ad14f680dc03c63b036c4dd","","root"],["p","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5"]]}] +[11:06:51.413] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"👄 \nhttps://images2.imgbox.com/a8/ae/yJcTEbCK_o.jpeg \n#FitnessAndLifestyleGoals","created_at":1759417605,"id":"ff15019c6da9c5ee35add0b351cfa74341232b400653e43b423ed1cb060c2f0f","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6dabef0f4da876507557c0566ee5cf2a64086706e1f58803ccec476ad3598fa93adbd11de129c6e7b424ee18208872c054ff7ebef749ebcc7f2fb7f94a87c514","tags":[]}] +[11:06:51.473] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Prob right on that one re monero but I dont know what im talking abt in that realm. nostr:nprofile1qqstzvalc4a76cwrj82w372nhyrv0utsn3pcmyw8t7md4au5f82h38gpr4mhxue69uhkummnw3ez6ur4vgh8wetvd3hhyer9wghxuet5qyt8wumn8ghj77rdwgh82um9dehhxarj9ehhyecpr9mhxue69uhhxetwv35hgtnwdaekvmrpwfjjucm0d5yr8kp5 would know better.","created_at":1759417604,"id":"aef5aab25ed07b48a709d13c2e6ce26d1fc94f10338156feb951b67330521bde","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"f8656f2e74d241a3296340850b17dca9b6e0606f3fa33e929defd0a77b37a07c56e683117509f2021348134db9ebb850e3beb8ee0b5ccbbc4c1c3eea94243a18","tags":[["e","9ae53fea751fc1007b611940cea0e9efb8a18bbb16f2b611b18772e9d9cac237","","root"],["e","3609c41f7436937d4d390e4b73f685d17a9f0217696564fbee5331d9a44c92e3"],["e","64ecc2bc39a6410b8f291c2ec30ed9763663df774dfe7a9b0d7e2e6d6062173c","","reply"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","b133bfc57bed61c391d4e8f953b906c7f1709c438d91c75fb6daf79449d5789d","","mention"]]}] +[11:06:51.534] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://github.com/aljazceru/awesome-nostr","created_at":1759417604,"id":"5bebd3a334051cce25dff2f11eb8bae6f94eea9cea8087fa6c902b2055794bc1","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"6f234ac01aed977dc55a2ea87899fa1ae6ca22c3bbbef869dc9187b1cf9b41d4ecae880666704169a49e433d56ab1d90d11b32d24b03c0943b5ee0c689444d80","tags":[["alt","A short note: https://github.com/aljazceru/awesome-nostr"],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","wss://nostr.mutinywallet.com/"],["r","https://github.com/aljazceru/awesome-nostr"]]}] +[11:06:51.594] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do i know what sound torture by loud buzzing is\n\nyes","created_at":1759417597,"id":"46c8a15a98d6399942729e5754b6e92a0b0a4f6c91522745ce7861543b1b1603","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"fbdf29bc418c77d69f9659d0ca6819812ab9f34124a6a7517a36ef968998ee25164e1d566f1e21040af1b956c2b28d6f5bdf1e8bb00be8c3a9e7be8f44256a1d","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","c2bff816ce541d0ea50f8c09b04c94c4179941518f2ee8020cb4b4fe207e7d81","","reply"]]}] +[11:06:51.655] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"October 2, 2025\n\nThe unanimous Declaration of everyday Americans,\nWhen life demands it, a people must break free from an overreaching authority and claim the equal place among nations that nature and reason grant them. Out of respect for the world’s view, they must explain why.\nWe hold these truths as obvious: All people are created equal, gifted by their Creator with unbreakable rights—life, liberty, the pursuit of happiness. Governments exist to protect these, drawing power only from the governed’s consent. In our republic, sovereign states created the federal government as a limited tool, not the boss; its role is narrow, defined by the people. If any government destroys these rights, people have the right—and duty—to change or end it, building something better (or nothing) to ensure safety and happiness. Wisdom says don’t upend long-standing systems lightly; history proves we endure bad times before acting. But a pattern of abuses aimed at total control demands revolt and new safeguards. Everyday Americans have endured this too long; now we must overhaul the system. Washington DC’s record is one of constant violations, all building tyranny over free people. Here’s the evidence for an open-minded world.\nWashington DC created a fake central bank, the Federal Reserve, printing money from nothing, saddling people with debt while insiders profit from inflation that eats away at wages and savings.\nWashington DC ditched the gold standard that built this nation—a check on spending, linking money to real value, blocking endless deficits and ensuring currency meant actual wealth, not IOUs.\nWashington DC drowns the economy in this phony dollar, a debt bomb for our kids, sparking booms, busts, and wealth shifts from workers to DC elites.\nWashington DC drags us into endless foreign wars, wasting blood and treasure on false security claims, all powered by unlimited printing that turns defense into empire.\nWashington DC enforces income taxes as outright theft, grabbing earnings without real consent to bankroll a massive bureaucracy that rules by fear.\nWashington DC built a maze of laws in the United States Code—so huge no one knows it all—that turns daily life into potential crimes, leaving people open to random fines, jail, or worse from enforcers.\nWashington DC rigs the courts, picking judges loyal to politics, skipping fair trials, and twisting justice to shield the system over individuals.\nWashington DC ramps up domestic spying and troops, eyeing citizens as threats in peacetime and putting guns over civil rule.\nWashington DC partners with global groups to push alien rules, stripping our sovereignty for unanswerable oversight.\nWashington DC sows division, turning us against each other to hide its grabs, all under banners of unity and progress.\nAt every turn of these wrongs, we’ve begged for fixes politely; our pleas met only more harm. A regime defined by tyranny can’t lead free people.\nWe’ve also reached out to fellow citizens still in its grip: warning of Congress’s overreach, recalling our voluntary founding, appealing to their fairness and shared blood to reject these power plays that sever ties. They’ve ignored justice and kinship. So we accept the break, treating them as the world: foes in fight, friends in peace.\nWe, everyday Americans united in purpose, calling on the world’s highest judge for our good intent, declare in the people’s name: We are—and must be—free from Washington DC’s control; cut from all loyalty to its machine; our ties to that federal power fully severed. As free people—and sovereign states reclaiming our founding role—we claim full rights to defend, make peace, ally, trade, and act as independents demand. This includes embracing sound money like Bitcoin: decentralized, untouchable by rulers, letting each person bank themselves, shield assets from theft and debasement, and revive the limits fiat money killed. Backing this stand, trusting divine aid, we pledge our lives, fortunes, and honor to each other.\n\nnostr:nevent1qqspxhdp6l0mk8mxgwp23ljweaqjsma0w3kycgnwafwjyhn4lv5xdsqpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgmzec6n","created_at":1759417595,"id":"24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","kind":1,"pubkey":"8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","sig":"b78aa7f5e3c796c216dbc014f5ad3494ce5b790e4d2bbf74694e40b370ffa569e31671d05c94941056266860476d96a7e3e229fcb6507ab83f2bb9cbe5fb7cb7","tags":[["e","135da1d7dfbb1f664382a8fe4ecf41286faf746c4c226eea5d225e75fb2866c0","wss://relay.primal.net","mention"],["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"]]}] +[11:06:51.716] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Successfully deleted a stale livestream which had been hanging for nearly 5 days! 😅 sorry if that caused a bunch of weird primal notifications.","created_at":1759417582,"id":"85ca0c12f23df221e4421d7f57e06658c4e38547545f445c363ea9ac73831c53","kind":1,"pubkey":"75462f4dece4fbde54a535cfa09eb0d329bda090a9c2f9ed6b5f9d1d2fb6c15b","sig":"1fff69d604fc22ed505533d9441ac834dcaca4189cab9e7841ebb8e020ba980adde440920452728de1d7019f613b20828d6ba678bac240059ad36fa62c372ce5","tags":[]}] +[11:06:51.776] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\nhttps://blossom.primal.net/dee44a089f9755fa191b20ca097fa2dcb9a660a770dedb2321ca9a99b132a5fe.jpg","created_at":1759417581,"id":"8352d4d19021afcfa7188b22a1f0b1d4a1f37ef3ca295a9819968e6bbb6ade9a","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"ec40b267026dd3800f2b2a387801ff61708df71782ce8d706919dfb4e2ac34efc03b6511a982e8be523f9ded0f7338c66f0d5e0ac986c1e296668ed97e233cab","tags":[]}] +[11:06:51.837] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"NEW EPISODE: Adam Back on Core vs Knots:\n\nYouTube: https://youtu.be/-R0CkF7a_yk?si=AXXPXXx86LHgNkaB\n\nFountain: https://fountain.fm/episode/VZccgzZ23ytnAfKRPd8w\n\nAlso streaming on X, Apple Podcasts, Spotify etc. ","created_at":1759417575,"id":"9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","kind":1,"pubkey":"edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","sig":"8d8f81cb9eeea457aff863ebb38fc1926a27c207d0b181bee14a34ee59ffca3a86f48a45dc9537dc33a5076564f102dda62a61569c34421c1e7d2d2c047bf026","tags":[]}] +[11:06:51.897] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do i know what it is like to have a constant hovering murder weapon over my head? \n\nno","created_at":1759417575,"id":"c2bff816ce541d0ea50f8c09b04c94c4179941518f2ee8020cb4b4fe207e7d81","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"0e40db4bd50654803f52727956f4d0ebc14c6b752a8927102e6eec8edaee2950363362086d12f556449d3cd2666f07b197a45090c055426019ac59d1c8ebed8e","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","ae18e51cbec152d32ff39bbdab894756b4612cb6aa24d00662d3d0964b6f6b98","","reply"]]}] +[11:06:51.958] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:06:52.018] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Any govt intervention undermines individual action. Thereby distorting prices in markets for those services. Best case, services offered are inefficient","created_at":1759417610,"id":"7530027aab54bb0279aa3dabf48041c288180aa221195d7eb0df7773084835f8","kind":1,"pubkey":"a5796ad50e34c3d5627e7803fd195beb813faa3869f3d1774cd6b9ff19ca9a5f","sig":"54aeabd36c09a491a971b3e51c780c088c5e92be6ab03bdb1b232ad1129be26aafd16d0c366954b8c47288ec4cb42517597ed259246be0f1179c98160c68f9c8","tags":[["e","b61aa74053a12a54f7d997ef7112df0129486ec16a44478e9025c5d449d5aab4","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","","mention"]]}] +[11:06:52.633] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub1823chanrkmyrfgz2v4pwmu22s8fjy0s9ps7vnd68n7xgd8zr9neqlc2e5r loginbonus","created_at":1759417612,"id":"10b6cfd6573bd7298e546ae0e88d4eac58ebd53d58f016397393a6d5f171dd63","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"3cb613fa9529bb19968ce72091eabb7d7425adcc7e37621d4c22f16efe99b872ac2795fcc1181ae20bf32cc1abfa9c6b61f819ef5486cb3c6cfd641b113c7d59","tags":[["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"]]}] +[11:06:53.800] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂 never caught that","created_at":1759417613,"id":"108a5f942c7bc8032c33504b0656f6de743811381db9e0a016af6909362a488d","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"62f30c35451ffa0d2a8e3ddfba0bb6545e461381146fbf33d2e13122a1f63fbe74befeafdf7bea4468e7596678b1157a503599674d76a61c312629885e35bad9","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","94c5dce898f6fcdf1548212d82a214c2edf25dc831c866f9ae9149105ad0bf53","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"]]}] +[11:06:55.410] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks!","created_at":1759417615,"id":"037c2e2317d45f7df185fbf11d03052902942d4d428a043dba407a4a1910ce72","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"4e198206ac50409246f3f3a96ca5673175ba4da5b82f8c80b850fcb878ffe5811061db67c4aabc84a037a3b3ca5193916ccd56a440779ad6704cb389e05405a7","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","","root"],["e","f2076b3d7c2bb07ca4dd708d0a8d9f5c7d567928e7d5ba906575440d4a44049a","wss://staging.yabu.me","reply"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","","mention"]]}] +[11:06:57.906] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ya never know …","created_at":1759417617,"id":"793f61b488df350fd5d52389e6618f0877997bb90aa731f8658f8db71a3b86d4","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"083f02c473c492cc3592464ad26b3f0423d90969dbfd49768f6223e22a8553781b0cdcb4d00d7d5070a6b07bb6fee8683a5a398e22f531e31a241a379e58c0a7","tags":[["e","b816bbeb9fcbae707939076986a7a1091d73de6f89d37f674d052489445587da","","root"],["e","8bbd2a97564570d84202d244bbcbf5313c4d516276e3d7eeac7a4f291a17df0b","","reply"],["p","e58143f793e4bf805a4df6cdc0289e352b3cf08a7b3e6afaaf89dd497bf0f4a6"],["p","78283e0d50c65682fd63d401f6f187f25dc56372bdf5dd02871f13e8bfb541cb"]]}] +[11:06:58.410] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ç§ã¯ã‚‚ã®ã™ã”ãæ¯ã‚’æ®ºã—ã¦ã„ã‚‹","created_at":1759417618,"id":"d9e6faf13657db5516098bb282ddb83e1f1cb6203d50b3931a17d17cf9c733fc","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1e501dd72178e7018887ffb5cfcc8391c4b3bd010d69fb2820bd36e3ffe603e68873138445487c0eaacef9d102d34b19744dbff3b1bc90d289471dc83895d2a1","tags":[]}] +[11:07:05.862] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Rick takes Morty to the NostrVerse\n\nhttps://v.nostr.build/hEiCSRI3Y1ZVVacb.mp4","created_at":1759417625,"id":"e6a72b02204260f658bbe7485e6e773c48ce0c5b19ad9dd9cc6006b6753dbb5c","kind":1,"pubkey":"59cacbd83ad5c54ad91dacf51a49c06e0bef730ac0e7c235a6f6fa29b9230f02","sig":"d650cfad515d69bc95e8cb59083cc42d60a28a94de29374b50fe79b0812a4bcaf57b7d007da8bffb7eba13b34532e421b4bfb40590270d28ead95e07fc4f5b6f","tags":[["imeta","url https://v.nostr.build/hEiCSRI3Y1ZVVacb.mp4","blurhash ejLg%+%%-:M{V@M~--D,t3t7SInmW9V[kC-;g3o3aejFslW9s:oLax","dim 704x1280"],["r","https://v.nostr.build/hEiCSRI3Y1ZVVacb.mp4"]]}] +[11:07:12.172] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:07:12.283] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:07:12.343] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:07:12.404] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:07:14.176] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The spade is both parties. Try again. \n\n","created_at":1759417633,"id":"f8d3e0c394b5d0bce36f6407a23065c29e68546347ab314f8a9b4c94bf5e98bd","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"772c2e3bd70f6ebb9868d62ffa2fb75652339e83eb5d87d7044b6757dbc7fb3067b90caa0bfaac7d3350c02f708035b3d8eeef74bb93aa0ca9290f0fdddf4ad2","tags":[["p","06ff11045ed0859722c32d003255ff09d6617a1119db091705a09a6e7dfc008a","wss://relay.mostr.pub"],["e","8937fa4e1439e21a8956787e7f9d37090a5f40b5b2b5264023d7bc60f3a20769","wss://relay.mostr.pub","root","06ff11045ed0859722c32d003255ff09d6617a1119db091705a09a6e7dfc008a"]]}] +[11:07:21.210] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:07:21.432] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The spade is both parties. Try again. \n\n","created_at":1759417633,"id":"f8d3e0c394b5d0bce36f6407a23065c29e68546347ab314f8a9b4c94bf5e98bd","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"772c2e3bd70f6ebb9868d62ffa2fb75652339e83eb5d87d7044b6757dbc7fb3067b90caa0bfaac7d3350c02f708035b3d8eeef74bb93aa0ca9290f0fdddf4ad2","tags":[["p","06ff11045ed0859722c32d003255ff09d6617a1119db091705a09a6e7dfc008a","wss://relay.mostr.pub"],["e","8937fa4e1439e21a8956787e7f9d37090a5f40b5b2b5264023d7bc60f3a20769","wss://relay.mostr.pub","root","06ff11045ed0859722c32d003255ff09d6617a1119db091705a09a6e7dfc008a"]]}] +[11:07:21.492] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Rick takes Morty to the NostrVerse\n\nhttps://v.nostr.build/hEiCSRI3Y1ZVVacb.mp4","created_at":1759417625,"id":"e6a72b02204260f658bbe7485e6e773c48ce0c5b19ad9dd9cc6006b6753dbb5c","kind":1,"pubkey":"59cacbd83ad5c54ad91dacf51a49c06e0bef730ac0e7c235a6f6fa29b9230f02","sig":"d650cfad515d69bc95e8cb59083cc42d60a28a94de29374b50fe79b0812a4bcaf57b7d007da8bffb7eba13b34532e421b4bfb40590270d28ead95e07fc4f5b6f","tags":[["imeta","url https://v.nostr.build/hEiCSRI3Y1ZVVacb.mp4","blurhash ejLg%+%%-:M{V@M~--D,t3t7SInmW9V[kC-;g3o3aejFslW9s:oLax","dim 704x1280"],["r","https://v.nostr.build/hEiCSRI3Y1ZVVacb.mp4"]]}] +[11:07:21.553] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ç§ã¯ã‚‚ã®ã™ã”ãæ¯ã‚’æ®ºã—ã¦ã„ã‚‹","created_at":1759417618,"id":"d9e6faf13657db5516098bb282ddb83e1f1cb6203d50b3931a17d17cf9c733fc","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1e501dd72178e7018887ffb5cfcc8391c4b3bd010d69fb2820bd36e3ffe603e68873138445487c0eaacef9d102d34b19744dbff3b1bc90d289471dc83895d2a1","tags":[]}] +[11:07:21.613] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ya never know …","created_at":1759417617,"id":"793f61b488df350fd5d52389e6618f0877997bb90aa731f8658f8db71a3b86d4","kind":1,"pubkey":"1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","sig":"083f02c473c492cc3592464ad26b3f0423d90969dbfd49768f6223e22a8553781b0cdcb4d00d7d5070a6b07bb6fee8683a5a398e22f531e31a241a379e58c0a7","tags":[["e","b816bbeb9fcbae707939076986a7a1091d73de6f89d37f674d052489445587da","","root"],["e","8bbd2a97564570d84202d244bbcbf5313c4d516276e3d7eeac7a4f291a17df0b","","reply"],["p","e58143f793e4bf805a4df6cdc0289e352b3cf08a7b3e6afaaf89dd497bf0f4a6"],["p","78283e0d50c65682fd63d401f6f187f25dc56372bdf5dd02871f13e8bfb541cb"]]}] +[11:07:21.674] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks!","created_at":1759417615,"id":"037c2e2317d45f7df185fbf11d03052902942d4d428a043dba407a4a1910ce72","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"4e198206ac50409246f3f3a96ca5673175ba4da5b82f8c80b850fcb878ffe5811061db67c4aabc84a037a3b3ca5193916ccd56a440779ad6704cb389e05405a7","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","","root"],["e","f2076b3d7c2bb07ca4dd708d0a8d9f5c7d567928e7d5ba906575440d4a44049a","wss://staging.yabu.me","reply"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411","","mention"]]}] +[11:07:21.735] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂 never caught that","created_at":1759417613,"id":"108a5f942c7bc8032c33504b0656f6de743811381db9e0a016af6909362a488d","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"62f30c35451ffa0d2a8e3ddfba0bb6545e461381146fbf33d2e13122a1f63fbe74befeafdf7bea4468e7596678b1157a503599674d76a61c312629885e35bad9","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","94c5dce898f6fcdf1548212d82a214c2edf25dc831c866f9ae9149105ad0bf53","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e"]]}] +[11:07:21.795] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:npub1823chanrkmyrfgz2v4pwmu22s8fjy0s9ps7vnd68n7xgd8zr9neqlc2e5r loginbonus","created_at":1759417612,"id":"10b6cfd6573bd7298e546ae0e88d4eac58ebd53d58f016397393a6d5f171dd63","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"3cb613fa9529bb19968ce72091eabb7d7425adcc7e37621d4c22f16efe99b872ac2795fcc1181ae20bf32cc1abfa9c6b61f819ef5486cb3c6cfd641b113c7d59","tags":[["p","3aa38bf663b6c834a04a6542edf14a81d3223e050c3cc9b7479f8c869c432cf2"]]}] +[11:07:21.856] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Any govt intervention undermines individual action. Thereby distorting prices in markets for those services. Best case, services offered are inefficient","created_at":1759417610,"id":"7530027aab54bb0279aa3dabf48041c288180aa221195d7eb0df7773084835f8","kind":1,"pubkey":"a5796ad50e34c3d5627e7803fd195beb813faa3869f3d1774cd6b9ff19ca9a5f","sig":"54aeabd36c09a491a971b3e51c780c088c5e92be6ab03bdb1b232ad1129be26aafd16d0c366954b8c47288ec4cb42517597ed259246be0f1179c98160c68f9c8","tags":[["e","b61aa74053a12a54f7d997ef7112df0129486ec16a44478e9025c5d449d5aab4","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","","mention"]]}] +[11:07:21.917] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! Cool!","created_at":1759417609,"id":"a3953167acfc09697218604fa73928fc963fb08cdade05b3ed3534086437d309","kind":1,"pubkey":"787f21b533e5193ee45188d1b6aa8e222795ddd51a878101e89c5e7922db30d7","sig":"62e8e4707e16764480f5bfbdaed0a590f61c1e42c7f0a90ce3e22b72124659516965806e7a4efc11cf9fb8cd6e1218ebc6342690d762ddd206eb2caa532abeae","tags":[["e","c0e17dfac9e65773f3b7457c1326dd71647cd87b0ad14f680dc03c63b036c4dd","","root"],["p","7b662a7c1198d92eed2965e848e7b8990c8ea4640c6526b7aaaf6164aa4c5bc5"]]}] +[11:07:21.977] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"👄 \nhttps://images2.imgbox.com/a8/ae/yJcTEbCK_o.jpeg \n#FitnessAndLifestyleGoals","created_at":1759417605,"id":"ff15019c6da9c5ee35add0b351cfa74341232b400653e43b423ed1cb060c2f0f","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6dabef0f4da876507557c0566ee5cf2a64086706e1f58803ccec476ad3598fa93adbd11de129c6e7b424ee18208872c054ff7ebef749ebcc7f2fb7f94a87c514","tags":[]}] +[11:07:22.038] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:07:23.095] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Don't support the phonies, support the real. ","created_at":1759417642,"id":"8ae991cd1d7ac2d3fbce3bcdd51321b7f5af896ad9acd68ac3259a0ce383a7b4","kind":1,"pubkey":"8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641","sig":"4780a78f28eb76f72481ade301df3bd206a07f7d37a0dde3dc0b9a19a07e408b15370a55d792a7455b5879b0566709926ed15397fac35417dbeb74997d5ee210","tags":[]}] +[11:07:24.707] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Nostr is truly neutral.\n\nhttps://v.nostr.build/cO5oZ1Kedabg9ePU.mp4","created_at":1759417644,"id":"4430c90b6aacd13eac78e9b9193678549bd72f0dc7187ffc579a0db671c72584","kind":1,"pubkey":"59cacbd83ad5c54ad91dacf51a49c06e0bef730ac0e7c235a6f6fa29b9230f02","sig":"b240a8a4cdd3763196c918ec4e8e889a50f0857969c34406dd8ca6c12c07417e03b4e4696bcf906c6f305ddc561ff5e7057b342277ff7ac1f01df56eedd1ea5b","tags":[["e","e6a72b02204260f658bbe7485e6e773c48ce0c5b19ad9dd9cc6006b6753dbb5c","","root"],["imeta","url https://v.nostr.build/cO5oZ1Kedabg9ePU.mp4","blurhash eZIz_iiwV@kqIJ02e.ogofoJN3o~t8nl%GJKovjYR.R.%MjZWUWCV_","dim 704x1280"],["r","https://v.nostr.build/cO5oZ1Kedabg9ePU.mp4"]]}] +[11:07:30.878] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thank you","created_at":1759417650,"id":"1e5ed2ba4c43da6f1301144c995cee71764c1e9913512abbf61aeb19fc9ec763","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"827d5b0dad0244d8a83f67ed108eeb1e8fb9487f73e7172a5feab4df1bc469c79ac5e260161b7f1d779b36cc8427b680e3135fb11773abcfc45b320cd597f6e8","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","5bebd3a334051cce25dff2f11eb8bae6f94eea9cea8087fa6c902b2055794bc1","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","","mention"]]}] +[11:07:31.245] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"OpenAI became the world’s most valuable startup after a $6.6bn secondary share sale, reaching a $500bn valuation and surpassing SpaceX, according to reports. #OpenAI #FiatNews","created_at":1759417631,"id":"09217f46b682f6df78cc07f60dc24473861fc3aaaf41a7144d77699ebfbd7f4f","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"ba7e2d3a722bc66a57d812c14e1316ee02d071d049076ed268bf2d38e9d5438924b2139109b0232088615175d03b29c16f1ee1dd651a7a31cf38aa5e75948583","tags":[["t","OpenAI"],["t","openai"],["t","FiatNews"],["t","fiatnews"]]}] +[11:07:34.990] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"would i recommend anyone ever buy property on my block\n\nno\n\nwhat is the property value of my block?\n\n\nwell what is the property value of gitmo","created_at":1759417654,"id":"e91b3233069e3dfa2e4e136fde72c68d73d35620b85ef37c5f818ae93ee1737a","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"71bfad4e62bbede8ef5fbd153e6a1aa9d28f1934f66697fa28ff48cab0f91d9fae76c3ebeec8550ba7e32e1a42cdf484bc4ac2e0e296273fbe065a1b19167412","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","46c8a15a98d6399942729e5754b6e92a0b0a4f6c91522745ce7861543b1b1603","","reply"]]}] +[11:07:39.843] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"People is rising again which I fuckin love it , most probably we will have another fakedemic again ....soon in the next two years , if they play again as 2020 where they put everyone back to their homes through the biggest scam after finacial system humanity have ever lived I hope this time people won't fell into the trap , future is getting exiting , where we will see how much \"sapiens\" we are as specie, I have to fight for my kids , all my life and fight is for them !! All my cheese is for them !! ","created_at":1759417659,"id":"78329b23b9c1ca36df13d8bb2b5ebd465e344c9b9e3e186bb83b18cc4d9228b9","kind":1,"pubkey":"ead758acb90f88085f824e3fd1df80f5b33d1cca37ab5d8c0a47554877fd834a","sig":"02b9f4df62882968ebf94cf9305fb4944a877e1d609572c2761c7041ffb7a3e45ea780beb02c42b88a83c989591d7b9627628578b46c1d8b0fb6032f0f7624cc","tags":[["alt","A short note: People is rising again which I fuckin love it , mo..."]]}] +[11:07:41.333] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The nexus 4 was the best nexus.","created_at":1759417660,"id":"d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","kind":1,"pubkey":"1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","sig":"6bfe14fe4244c19de162b70e4b4aa6916fb7b9890bcec5fd251648c671ebcd41baed1e5b5b7339d3930f0bf6f0ee59a562b98c2c505974b41b50573ef3b5e9e2","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","8f6d4172436997b6cc12a585f871b6e8ac2096fc393026bcb6629014fcb48e05","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:07:41.393] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"A lot of opinion and no fact. You didn't say where he's wrong, or why you think that. You're just insulting people as if it's a valid argument, and it isn't. \n\n","created_at":1759417660,"id":"1c15cb88d6ad11ebffd7c6c21b33b2ffa89149dd2e632f925a5f2d4a80507458","kind":1,"pubkey":"148f4cf17719a3f4f07e6f3f1a900bf440adb681049d40a216e54f976de4345d","sig":"5461a3fdbb12d89c434c535a0519c639a38fb84c824b5bb2f382c6352ee05cad185eb4c32780bf0655bd448ed9adb6cc00e164a080796a2df02442a0517d7ff8","tags":[["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://premium.primal.net/"],["p","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9","wss://nostr.mom"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["e","6a9c85d42b7ebf5c7f6cc294343438530b362822d0083c967390c612f1220f45","wss://nostr.mom","reply","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9"],["e","d78234a9f86ed09899536cf3b3e01882157a58fffe1f5fa05df113018cb0381b","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"]]}] +[11:07:42.178] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:07:42.289] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:07:42.350] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:07:42.410] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:07:49.384] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"也算是一个好办法了","created_at":1759417667,"id":"54cd980c605097e61ce9d1555494e5ee1acb270141620a0496b1a3c68cbd5909","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"c70ca6dd6e04ebd30f99e3d4bdef5d60e3f3fe364fe0f100273e17f3140a07e0f3bc9382fc8f889fea47271b75c7bb3d30840fb059177880e2b5e2190f2755b8","tags":[["e","b0b61731b8d6781a39c0f24d15f240665d2dccb1e00b4155ff59ff6a95d122e4","","root"],["e","f02bda6325771a4d8df0891996e2dbca5b834b5421b9935098ccaa320d869af9","","reply"],["p","16525a09c429648052b3be16d25aa59b4fc2bc13ca936c6f1c96266349632845"],["p","81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5"]]}] +[11:07:51.215] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:07:51.372] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"也算是一个好办法了","created_at":1759417667,"id":"54cd980c605097e61ce9d1555494e5ee1acb270141620a0496b1a3c68cbd5909","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"c70ca6dd6e04ebd30f99e3d4bdef5d60e3f3fe364fe0f100273e17f3140a07e0f3bc9382fc8f889fea47271b75c7bb3d30840fb059177880e2b5e2190f2755b8","tags":[["e","b0b61731b8d6781a39c0f24d15f240665d2dccb1e00b4155ff59ff6a95d122e4","","root"],["e","f02bda6325771a4d8df0891996e2dbca5b834b5421b9935098ccaa320d869af9","","reply"],["p","16525a09c429648052b3be16d25aa59b4fc2bc13ca936c6f1c96266349632845"],["p","81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5"]]}] +[11:07:51.433] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"A lot of opinion and no fact. You didn't say where he's wrong, or why you think that. You're just insulting people as if it's a valid argument, and it isn't. \n\n","created_at":1759417660,"id":"1c15cb88d6ad11ebffd7c6c21b33b2ffa89149dd2e632f925a5f2d4a80507458","kind":1,"pubkey":"148f4cf17719a3f4f07e6f3f1a900bf440adb681049d40a216e54f976de4345d","sig":"5461a3fdbb12d89c434c535a0519c639a38fb84c824b5bb2f382c6352ee05cad185eb4c32780bf0655bd448ed9adb6cc00e164a080796a2df02442a0517d7ff8","tags":[["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://premium.primal.net/"],["p","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9","wss://nostr.mom"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["e","6a9c85d42b7ebf5c7f6cc294343438530b362822d0083c967390c612f1220f45","wss://nostr.mom","reply","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9"],["e","d78234a9f86ed09899536cf3b3e01882157a58fffe1f5fa05df113018cb0381b","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"]]}] +[11:07:51.524] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The nexus 4 was the best nexus.","created_at":1759417660,"id":"d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","kind":1,"pubkey":"1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","sig":"6bfe14fe4244c19de162b70e4b4aa6916fb7b9890bcec5fd251648c671ebcd41baed1e5b5b7339d3930f0bf6f0ee59a562b98c2c505974b41b50573ef3b5e9e2","tags":[["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://relay.nostrplebs.com/","root"],["e","8f6d4172436997b6cc12a585f871b6e8ac2096fc393026bcb6629014fcb48e05","","reply"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[11:07:51.584] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"People is rising again which I fuckin love it , most probably we will have another fakedemic again ....soon in the next two years , if they play again as 2020 where they put everyone back to their homes through the biggest scam after finacial system humanity have ever lived I hope this time people won't fell into the trap , future is getting exiting , where we will see how much \"sapiens\" we are as specie, I have to fight for my kids , all my life and fight is for them !! All my cheese is for them !! ","created_at":1759417659,"id":"78329b23b9c1ca36df13d8bb2b5ebd465e344c9b9e3e186bb83b18cc4d9228b9","kind":1,"pubkey":"ead758acb90f88085f824e3fd1df80f5b33d1cca37ab5d8c0a47554877fd834a","sig":"02b9f4df62882968ebf94cf9305fb4944a877e1d609572c2761c7041ffb7a3e45ea780beb02c42b88a83c989591d7b9627628578b46c1d8b0fb6032f0f7624cc","tags":[["alt","A short note: People is rising again which I fuckin love it , mo..."]]}] +[11:07:51.644] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"would i recommend anyone ever buy property on my block\n\nno\n\nwhat is the property value of my block?\n\n\nwell what is the property value of gitmo","created_at":1759417654,"id":"e91b3233069e3dfa2e4e136fde72c68d73d35620b85ef37c5f818ae93ee1737a","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"71bfad4e62bbede8ef5fbd153e6a1aa9d28f1934f66697fa28ff48cab0f91d9fae76c3ebeec8550ba7e32e1a42cdf484bc4ac2e0e296273fbe065a1b19167412","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","46c8a15a98d6399942729e5754b6e92a0b0a4f6c91522745ce7861543b1b1603","","reply"]]}] +[11:07:51.705] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thank you","created_at":1759417650,"id":"1e5ed2ba4c43da6f1301144c995cee71764c1e9913512abbf61aeb19fc9ec763","kind":1,"pubkey":"e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","sig":"827d5b0dad0244d8a83f67ed108eeb1e8fb9487f73e7172a5feab4df1bc469c79ac5e260161b7f1d779b36cc8427b680e3135fb11773abcfc45b320cd597f6e8","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","5bebd3a334051cce25dff2f11eb8bae6f94eea9cea8087fa6c902b2055794bc1","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","","mention"]]}] +[11:07:51.765] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Nostr is truly neutral.\n\nhttps://v.nostr.build/cO5oZ1Kedabg9ePU.mp4","created_at":1759417644,"id":"4430c90b6aacd13eac78e9b9193678549bd72f0dc7187ffc579a0db671c72584","kind":1,"pubkey":"59cacbd83ad5c54ad91dacf51a49c06e0bef730ac0e7c235a6f6fa29b9230f02","sig":"b240a8a4cdd3763196c918ec4e8e889a50f0857969c34406dd8ca6c12c07417e03b4e4696bcf906c6f305ddc561ff5e7057b342277ff7ac1f01df56eedd1ea5b","tags":[["e","e6a72b02204260f658bbe7485e6e773c48ce0c5b19ad9dd9cc6006b6753dbb5c","","root"],["imeta","url https://v.nostr.build/cO5oZ1Kedabg9ePU.mp4","blurhash eZIz_iiwV@kqIJ02e.ogofoJN3o~t8nl%GJKovjYR.R.%MjZWUWCV_","dim 704x1280"],["r","https://v.nostr.build/cO5oZ1Kedabg9ePU.mp4"]]}] +[11:07:51.826] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Don't support the phonies, support the real. ","created_at":1759417642,"id":"8ae991cd1d7ac2d3fbce3bcdd51321b7f5af896ad9acd68ac3259a0ce383a7b4","kind":1,"pubkey":"8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641","sig":"4780a78f28eb76f72481ade301df3bd206a07f7d37a0dde3dc0b9a19a07e408b15370a55d792a7455b5879b0566709926ed15397fac35417dbeb74997d5ee210","tags":[]}] +[11:07:51.886] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The spade is both parties. Try again. \n\n","created_at":1759417633,"id":"f8d3e0c394b5d0bce36f6407a23065c29e68546347ab314f8a9b4c94bf5e98bd","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"772c2e3bd70f6ebb9868d62ffa2fb75652339e83eb5d87d7044b6757dbc7fb3067b90caa0bfaac7d3350c02f708035b3d8eeef74bb93aa0ca9290f0fdddf4ad2","tags":[["p","06ff11045ed0859722c32d003255ff09d6617a1119db091705a09a6e7dfc008a","wss://relay.mostr.pub"],["e","8937fa4e1439e21a8956787e7f9d37090a5f40b5b2b5264023d7bc60f3a20769","wss://relay.mostr.pub","root","06ff11045ed0859722c32d003255ff09d6617a1119db091705a09a6e7dfc008a"]]}] +[11:07:51.947] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"OpenAI became the world’s most valuable startup after a $6.6bn secondary share sale, reaching a $500bn valuation and surpassing SpaceX, according to reports. #OpenAI #FiatNews","created_at":1759417631,"id":"09217f46b682f6df78cc07f60dc24473861fc3aaaf41a7144d77699ebfbd7f4f","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"ba7e2d3a722bc66a57d812c14e1316ee02d071d049076ed268bf2d38e9d5438924b2139109b0232088615175d03b29c16f1ee1dd651a7a31cf38aa5e75948583","tags":[["t","OpenAI"],["t","openai"],["t","FiatNews"],["t","fiatnews"]]}] +[11:07:52.007] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:07:52.068] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Follower counts are fake anyways mostly bots and dead npubs. Especially if you are using primal or Nostr.Band. npub.world gives more accurate numbers. \n\nFor example:\nhttps://i.nostr.build/PC3Nd0StlG5VLiYz.jpg https://i.nostr.build/2LHKlcf7aP8kF6cl.jpg\nhttps://i.nostr.build/8bjb55FjOB16Y13G.jpg https://i.nostr.build/N912BIJwCZa4sBot.jpg https://i.nostr.build/7yw09F2YQHZ3lVws.jpg https://i.nostr.build/UNySfrtPFqITzAiM.jpg\nhttps://i.nostr.build/Q3r3PCl9BuKbvK7h.jpg https://i.nostr.build/rWxOSW74gwlUCF6C.jpg\n\nFWIW, I used to follow you. You brought mostly political posts and complaining to my feed, so I stopped. Try being funny sometimes. Grumpy complaining about politics isn't interesting.","created_at":1759417672,"id":"b21e87515deae395d3a73dc86cf66eedf0ad63da49c162e4b17717922749ece2","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"d14f5325b87cf1795c0264f134ff800343f741964997f8cf85f75302c26d7051da5fa2d1c57664d1b9f134d65f1b4a9967a3a0677fcf8bc99ee386bbeda06cf7","tags":[["alt","A short note: Follower counts are fake anyways mostly bots and d..."],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nostr.land/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","wss://theforest.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["r","https://i.nostr.build/UNySfrtPFqITzAiM.jpg"],["r","https://npub.world/"],["r","https://i.nostr.build/2LHKlcf7aP8kF6cl.jpg"],["r","https://i.nostr.build/7yw09F2YQHZ3lVws.jpg"],["r","https://nostr.band./"],["r","https://i.nostr.build/8bjb55FjOB16Y13G.jpg"],["r","https://i.nostr.build/N912BIJwCZa4sBot.jpg"],["r","https://i.nostr.build/PC3Nd0StlG5VLiYz.jpg"],["r","https://i.nostr.build/Q3r3PCl9BuKbvK7h.jpg"],["r","https://i.nostr.build/rWxOSW74gwlUCF6C.jpg"]]}] +[11:07:56.003] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"no problem! great resource i have bookmarked for all things NOSTR","created_at":1759417675,"id":"10fb9f0eccb8c84cb114b352561f8410f0cd67b252b0f8842fe5b8aeac0ac23d","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"1697a2d1a958276dbf9f841abe4166d4dae3a47b569794d8e1c8341002ba664f5e5ec31840b26b2fbcb4253559ef1f810f43c4cb1f750742b69be944953cab07","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","1e5ed2ba4c43da6f1301144c995cee71764c1e9913512abbf61aeb19fc9ec763","wss://relay.nostr.band/","reply","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:08:00.953] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãŠã„ã€åž¢ã©ã“ã‚„ãï¼","created_at":1759417680,"id":"af372c5a785e857fa58f2623d89852d37c46dfc9afcf30595df7921e3e38d80e","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"4e1044c93e698566ecdf942bf8d656da496d50c921c52b7619c1bc3b01cc88b6c3f4bea23e05e591beecf34a1cb16f436f73f1debc50da1ffcf41fca46833e4d","tags":[["e","821d1f27b5e746475c6a748359d5d0dc046b09df24600387a9323ba13a3c8bd8","","root"],["p","3ff27e87d0af4271006675f81a42c2d20062f5dc41f924bc2e8c7d31ddac2c77"]]}] +[11:08:08.603] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM ðŸ’🇺🇸\n\n'In many ways the performances of Donald Trump remind me of chimpanzees and their dominance rituals' -Jane Goodall","created_at":1759417688,"id":"685b32cdc8e21e969733b5bca65a89e507b1742e19777fd6e31b21bb721b13b7","kind":1,"pubkey":"7a6b8c7de171955c214ded7e35cc782cd6dddfd141abb1929c632f69348e6f49","sig":"744b7eebf63994f10e3827f4cceb09a68fb037c5a9775a6ef57cf94fe00bcb09ac4d8d60882ff47a99d3b6494b71aa52d1d9098ce7517c38488179135bfbed0e","tags":[]}] +[11:08:08.917] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"K&R","created_at":1759417687,"id":"18decdc561cf3c408b8e72c4d40c997a781850b826015c13e020d8b0c981f31a","kind":1,"pubkey":"f838b6a03d8d0127a9a98e87c0142b528916a4336ba537e14131a2f513becc17","sig":"d79258bf11e3f517265626e08f7aa6614b72def853d404a30a18db5d1606512471899b779a610e9463cf39d09efd71875a3cee74a5baa54431ec6119eca6185f","tags":[["alt","A short note: K&R"],["e","d5d6c6d3dd561fdbbb3c6f571f496eeea591a58471670fe8ca6955e0d0439954","wss://relay.mostr.pub/","root","cc3790930722bfa73e28f9a2aa0832706884305cb80687e20927c7960db99185"],["p","cc3790930722bfa73e28f9a2aa0832706884305cb80687e20927c7960db99185","wss://relay.mostr.pub/"]]}] +[11:08:10.297] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Phoebe Gates and Sophia Kianni share the playbook for scaling consumer AI and winning Gen Z at TechCrunch Disrupt 2025\nhttps://techcrunch.com/2025/10/02/storming-the-gates-scaling-consumer-ai-with-phoebe-gates-and-sophia-kianni-only-at-techcrunch-disrupt-2025/","created_at":1759417200,"id":"2be9c9ee6c656af188bd1ef24e4833a7a2daed0dee28bd9e10f850e69ba7f1b5","kind":1,"pubkey":"01438c6f3044b377e81ca9d84d2e4c6484c85f0e1709babb295fe1d231f873ef","sig":"9e0944d578d2587c74a06dd5e40e29032f48d0a567dd1a346631087340e2ad41b6d75681045bd18aff6083569579a9a911ad5b5aeac4d3a505fd81836d04d458","tags":[]}] +[11:08:10.357] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I took the iPhone 17 on a trip to Hawaii, and it surpassed my expectations (until it didn't)\nhttps://www.zdnet.com/article/i-took-the-iphone-17-on-a-trip-to-hawaii-and-it-surpassed-my-expectations-until-it-didnt/","created_at":1759416960,"id":"12588cd2a66b52fc01a2da235764ac2c0174e13ddc1ed9d13413524936122b51","kind":1,"pubkey":"cf0cb3d28fa14be006b73eb339aad0f7b232ee571a272894da7b826b5d7a365c","sig":"d1cffe90dfdfef221f24e12e1f582fc9cb0c021b5c94d6c70564af40c5840a572bd3baf0b249331517ad2cc4ce9dfb992fe8a1a2a90d770fff0642d9a1a15ee8","tags":[]}] +[11:08:10.418] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"China Rolls Out Its First Talent Visa as the US Retreats on H-1Bs\nhttps://www.wired.com/story/china-talent-immigration-visa-h1-b-policy/","created_at":1759417185,"id":"beacb63d0d557579129f214867b585a3ef2f0d9f8a08af6b563bf00d691b3514","kind":1,"pubkey":"e2816dbb305b4ad1c3382c7b62617f6111bc199d733c8034ff03b0ef6f879d41","sig":"4df84d480b65e9b133805af1d2f85d04d96bd9987a9eb9e68bb526d40a94dc56243c3082c3ca78d9e20158419ca5ef9ec592615a96df51b3f445d6a8de78e970","tags":[]}] +[11:08:10.479] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"3 marketing tricks Nvidia uses to make its GPUs look better on paper\nhttps://www.xda-developers.com/nvidia-marketing-tricks-to-make-gpus-look-better/","created_at":1759417219,"id":"aad3da2fb63ac070d31510e784826897cc8e47aa609bf0382c62ecce5c2deea0","kind":1,"pubkey":"f4cc7f39dbe11af14820d57f5cec625cfa3a6b69a51b5cc575b555df0b69a98f","sig":"536685a6d0b1d50c924a95a3d7dbdb027e4ead4634aeab66129d2d3a06ce0209ee93a8e8398bca4e494e9ebd1f0075a29ff2ed705ad6106a0972f4df33558673","tags":[]}] +[11:08:10.540] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"AI Finds its Niche: Writing Corporate Press Releases\nhttps://gizmodo.com/ai-finds-its-niche-writing-corporate-press-releases-2000666360","created_at":1759417239,"id":"35a0478bcdd58c6297b0367eb7ae9970659996f9004d4a1b6263d0c39a62393f","kind":1,"pubkey":"d12bc85db332c76ae4db8b4d6899b64aad569abb30d7f3de378f7ebe7d55e2aa","sig":"20887045ebdcf35cf2c99e2f47a5f2320ffd7642090d50f5c26192ed635bd4b57fe069d14f293979267b34b357d2bbfc18c273865878159bafc58fd0665a4ee8","tags":[]}] +[11:08:10.600] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Silent Hill 2 remake studio Bloober Team confirms Silent Hill remake has entered full production\nhttps://www.techradar.com/gaming/silent-hill-2-remake-studio-bloober-team-confirms-silent-hill-remake-has-entered-full-production","created_at":1759416895,"id":"45fb7fa798aeaabb937ba6444acd9f50a485bf852cf51b6d72b22bb26648dcdd","kind":1,"pubkey":"332bc762935b07a2d1eb3b9ae1ddbaa23a12903f12f2011c8c876cfe259e5ef8","sig":"47c81657a8c0a36657e65c2c68b68fe936cc74b80462a51434728841b6805291be9394f2b4d1a32c0f43e2cf48eea0e53253cd865a1b47d1aba6524acc445870","tags":[]}] +[11:08:10.661] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Viral app Neon vows to return to sell more of your phone calls to AI companies\nhttps://www.engadget.com/apps/viral-app-neon-vows-to-return-to-sell-more-of-your-phone-calls-to-ai-companies-150233035.html?src=rss","created_at":1759417353,"id":"f3cf02a977490d5fc2107232d1b9127779bbf998a8c5c385144afacdd54ae824","kind":1,"pubkey":"0d211376b2c964abfdfade45249124ff0b71c1ba1bbeddc04a58a986241475a1","sig":"73c60d1f270f814da1f7688a959b46474271b1bc20946e9742bed58d4b2b0136bb531ff66df5774d7c2863fe847e5249c969e0db3f5e645498b66075fd818bf6","tags":[]}] +[11:08:10.722] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"One UI 8.5 may save you from accidentally sharing private info when sending pics\nhttps://www.androidauthority.com/one-ui-privacy-protection-feature-3603453/","created_at":1759417639,"id":"5e46838dfd8818f48d1e2926b5bcc3256ccbe7425fa685d3418180f217ff9cc6","kind":1,"pubkey":"beec1ebb34993b26ffca8d38705035e3e17b7ce1e1f8048b1066ffd5fdd8fd20","sig":"2a20da34ae168f16e17cf5900cbde8b496716fdd096269e2787cb400ba213d360c8be1b2e22c080cb77cf2554f36ac2a17fd8a646894c07804d08d054c09e420","tags":[]}] +[11:08:10.792] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"A new a16z report looks at which AI companies startups are actually paying for\nhttps://techcrunch.com/2025/10/02/a-new-a16z-report-looks-at-which-ai-companies-startups-are-actually-paying-for/","created_at":1759417200,"id":"5d1deb70b3420233609d4000dfed2c5a9b18b417fb5377e161e55a9a121775f0","kind":1,"pubkey":"01438c6f3044b377e81ca9d84d2e4c6484c85f0e1709babb295fe1d231f873ef","sig":"016272c6da830c733c188ee3b22a77d141db27d43da1f1abb9166fd827bf6010b345ed0f4f2c4401728fc1e68fca676f823983c7425cb54b18d9d5c01f955024","tags":[]}] +[11:08:10.964] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Amazon halts drone deliveries in Arizona after a pair crashed into a crane\nhttps://www.theverge.com/news/790636/amazon-prime-mk30-drone-delivery-crash-arizona-pause","created_at":1759417044,"id":"0794be9b1b3a5763975ddccd72be545965410ed869d58945f74332cb84df20dd","kind":1,"pubkey":"135ab72fcf316466d35d5da02a5cc27f5d70ea27ad9ce675327ec562f0a14c61","sig":"81744d218e5ace7c9f841d4833fff00217ea7cb7533a4ef073c03bf00c99c088bc172e46142ce2b7ee2d1d17a7a6acef5982406b808bac3da94fad2341302d1c","tags":[]}] +[11:08:11.578] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hackers are sending extortion emails to executives after claiming Oracle apps’ data breach\nhttps://techcrunch.com/2025/10/02/hackers-are-sending-extortion-emails-to-executives-after-claiming-oracle-apps-data-breach/","created_at":1759417027,"id":"c700da79494a470712e4f6341edd7ebbc1d2acff3d5d001b6ef051f53c8edb05","kind":1,"pubkey":"01438c6f3044b377e81ca9d84d2e4c6484c85f0e1709babb295fe1d231f873ef","sig":"371e499cebd27d526d24ab031c2c240c22cc32dd842cf5352b8e0ccff4c72d60366705fb9eccedc246cf58444a269264d568485a5fd3700da5852590ae2e64b4","tags":[]}] +[11:08:12.142] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:08:12.254] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:08:12.314] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:08:12.375] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:08:14.390] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"wanna invest in some peace and quiet in gitmo?\ndoes that sound like a sound investment plan?","created_at":1759417693,"id":"dacaa460d17076b2aca9bb3097fed94977ebde22040f4a04a921adadbfba21dd","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"eed652d0fc85ad679c4249fb37cb914af8dbb193347ef3cd3ae8a1dfe79df6d7843405c08f1f6975ae4b228d425207fcbe51f77f4c828a7be20b6d1e4681deed","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","e91b3233069e3dfa2e4e136fde72c68d73d35620b85ef37c5f818ae93ee1737a","","reply"]]}] +[11:08:16.333] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Jameson Lopp is CSAM excuser and bad actor. Also a shitcoiner who has incentive to turn Bitcoin into Ethereum like shitcoin.\nThats why he is doing this disgusting manipulation.\nnostr:nevent1qqsyc8m04al84ate6tgkwhvz7s72rhezwn5rp39r0dtvfkhfj9jkm4cppemhxue69uhkummn9ekx7mp0qyg8wumn8ghj7mn0wd68ytnddakj7qg4waehxw309aex2mrp0yhx27rfwsh8qatz9u4zcfwt","created_at":1759417685,"id":"3bc50e3240bb717f008f296f82f20c68e43951d7e0f620d570237501768b2461","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"94617d3427e8fbb74609572b1658e4d5ca57771e953a17a3ee1205ed04d84476e56df8977450288c31c8fa9d9204801aaa732f19da362f3ce2254581f763d549","tags":[["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://relay.primal.net/","root","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","6f2f53e78f03d3a2b7d200acab810f2730a19d731a10e17e7b55ad43fb47c828","wss://relay.damus.io/","reply","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["q","4c1f6faf7e7af579d2d1675d82f43ca1df2274e830c4a37b56c4dae991656dd7","wss://nos.lol/"]]}] +[11:08:21.153] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:08:21.153] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔔 Kolaborantského šéfa Nové Kachovky zabil ukrajinský dron. Útok zachytila kamera: \n\nPo útoku ukrajinského dronu zemÅ™el ve stÅ™edu Vladimir LeonÅ¥jev, šéf ruské okupaÄní správy v ukrajinské Nové Kachovce. Úder provedl Å¡estirotorový dron, který ukrajinská armáda používá k bombardování a ruské síly tyto bezpilotní stroje pÅ™ezdívají Baba Jaga. \nhttps://www.novinky.cz/clanek/valka-na-ukrajine-kolaborantskeho-sefa-nove-kachovky-zabil-ukrajinsky-dron-utok-zachytila-kamera-40541495 \n#CzechNews #News #Press #Media","created_at":1759417681,"id":"2fce0b3bff268ef25be4aea45185df5851f9ac9c77c58b88888e5c56b375deb7","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"5023644beff06b3433df0a8f6d40d72b78cb0fa90126158e9bac962e88b28539aaeef7f46a4a1f92945c7fef59fec08c03384d16ec8f941fb116dc71096eae82","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:08:21.436] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"wanna invest in some peace and quiet in gitmo?\ndoes that sound like a sound investment plan?","created_at":1759417693,"id":"dacaa460d17076b2aca9bb3097fed94977ebde22040f4a04a921adadbfba21dd","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"eed652d0fc85ad679c4249fb37cb914af8dbb193347ef3cd3ae8a1dfe79df6d7843405c08f1f6975ae4b228d425207fcbe51f77f4c828a7be20b6d1e4681deed","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","e91b3233069e3dfa2e4e136fde72c68d73d35620b85ef37c5f818ae93ee1737a","","reply"]]}] +[11:08:21.496] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM ðŸ’🇺🇸\n\n'In many ways the performances of Donald Trump remind me of chimpanzees and their dominance rituals' -Jane Goodall","created_at":1759417688,"id":"685b32cdc8e21e969733b5bca65a89e507b1742e19777fd6e31b21bb721b13b7","kind":1,"pubkey":"7a6b8c7de171955c214ded7e35cc782cd6dddfd141abb1929c632f69348e6f49","sig":"744b7eebf63994f10e3827f4cceb09a68fb037c5a9775a6ef57cf94fe00bcb09ac4d8d60882ff47a99d3b6494b71aa52d1d9098ce7517c38488179135bfbed0e","tags":[]}] +[11:08:21.557] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"K&R","created_at":1759417687,"id":"18decdc561cf3c408b8e72c4d40c997a781850b826015c13e020d8b0c981f31a","kind":1,"pubkey":"f838b6a03d8d0127a9a98e87c0142b528916a4336ba537e14131a2f513becc17","sig":"d79258bf11e3f517265626e08f7aa6614b72def853d404a30a18db5d1606512471899b779a610e9463cf39d09efd71875a3cee74a5baa54431ec6119eca6185f","tags":[["alt","A short note: K&R"],["e","d5d6c6d3dd561fdbbb3c6f571f496eeea591a58471670fe8ca6955e0d0439954","wss://relay.mostr.pub/","root","cc3790930722bfa73e28f9a2aa0832706884305cb80687e20927c7960db99185"],["p","cc3790930722bfa73e28f9a2aa0832706884305cb80687e20927c7960db99185","wss://relay.mostr.pub/"]]}] +[11:08:21.618] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Jameson Lopp is CSAM excuser and bad actor. Also a shitcoiner who has incentive to turn Bitcoin into Ethereum like shitcoin.\nThats why he is doing this disgusting manipulation.\nnostr:nevent1qqsyc8m04al84ate6tgkwhvz7s72rhezwn5rp39r0dtvfkhfj9jkm4cppemhxue69uhkummn9ekx7mp0qyg8wumn8ghj7mn0wd68ytnddakj7qg4waehxw309aex2mrp0yhx27rfwsh8qatz9u4zcfwt","created_at":1759417685,"id":"3bc50e3240bb717f008f296f82f20c68e43951d7e0f620d570237501768b2461","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"94617d3427e8fbb74609572b1658e4d5ca57771e953a17a3ee1205ed04d84476e56df8977450288c31c8fa9d9204801aaa732f19da362f3ce2254581f763d549","tags":[["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://relay.primal.net/","root","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","6f2f53e78f03d3a2b7d200acab810f2730a19d731a10e17e7b55ad43fb47c828","wss://relay.damus.io/","reply","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["q","4c1f6faf7e7af579d2d1675d82f43ca1df2274e830c4a37b56c4dae991656dd7","wss://nos.lol/"]]}] +[11:08:21.678] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔔 Kolaborantského šéfa Nové Kachovky zabil ukrajinský dron. Útok zachytila kamera: \n\nPo útoku ukrajinského dronu zemÅ™el ve stÅ™edu Vladimir LeonÅ¥jev, šéf ruské okupaÄní správy v ukrajinské Nové Kachovce. Úder provedl Å¡estirotorový dron, který ukrajinská armáda používá k bombardování a ruské síly tyto bezpilotní stroje pÅ™ezdívají Baba Jaga. \nhttps://www.novinky.cz/clanek/valka-na-ukrajine-kolaborantskeho-sefa-nove-kachovky-zabil-ukrajinsky-dron-utok-zachytila-kamera-40541495 \n#CzechNews #News #Press #Media","created_at":1759417681,"id":"2fce0b3bff268ef25be4aea45185df5851f9ac9c77c58b88888e5c56b375deb7","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"5023644beff06b3433df0a8f6d40d72b78cb0fa90126158e9bac962e88b28539aaeef7f46a4a1f92945c7fef59fec08c03384d16ec8f941fb116dc71096eae82","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:08:21.782] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãŠã„ã€åž¢ã©ã“ã‚„ãï¼","created_at":1759417680,"id":"af372c5a785e857fa58f2623d89852d37c46dfc9afcf30595df7921e3e38d80e","kind":1,"pubkey":"f8978eb7b86da8563b2cf208359e2e0ae27817bd616e4181a565a3e27f8e8a50","sig":"4e1044c93e698566ecdf942bf8d656da496d50c921c52b7619c1bc3b01cc88b6c3f4bea23e05e591beecf34a1cb16f436f73f1debc50da1ffcf41fca46833e4d","tags":[["e","821d1f27b5e746475c6a748359d5d0dc046b09df24600387a9323ba13a3c8bd8","","root"],["p","3ff27e87d0af4271006675f81a42c2d20062f5dc41f924bc2e8c7d31ddac2c77"]]}] +[11:08:21.843] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"no problem! great resource i have bookmarked for all things NOSTR","created_at":1759417675,"id":"10fb9f0eccb8c84cb114b352561f8410f0cd67b252b0f8842fe5b8aeac0ac23d","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"1697a2d1a958276dbf9f841abe4166d4dae3a47b569794d8e1c8341002ba664f5e5ec31840b26b2fbcb4253559ef1f810f43c4cb1f750742b69be944953cab07","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","1e5ed2ba4c43da6f1301144c995cee71764c1e9913512abbf61aeb19fc9ec763","wss://relay.nostr.band/","reply","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:08:21.904] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Follower counts are fake anyways mostly bots and dead npubs. Especially if you are using primal or Nostr.Band. npub.world gives more accurate numbers. \n\nFor example:\nhttps://i.nostr.build/PC3Nd0StlG5VLiYz.jpg https://i.nostr.build/2LHKlcf7aP8kF6cl.jpg\nhttps://i.nostr.build/8bjb55FjOB16Y13G.jpg https://i.nostr.build/N912BIJwCZa4sBot.jpg https://i.nostr.build/7yw09F2YQHZ3lVws.jpg https://i.nostr.build/UNySfrtPFqITzAiM.jpg\nhttps://i.nostr.build/Q3r3PCl9BuKbvK7h.jpg https://i.nostr.build/rWxOSW74gwlUCF6C.jpg\n\nFWIW, I used to follow you. You brought mostly political posts and complaining to my feed, so I stopped. Try being funny sometimes. Grumpy complaining about politics isn't interesting.","created_at":1759417672,"id":"b21e87515deae395d3a73dc86cf66eedf0ad63da49c162e4b17717922749ece2","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"d14f5325b87cf1795c0264f134ff800343f741964997f8cf85f75302c26d7051da5fa2d1c57664d1b9f134d65f1b4a9967a3a0677fcf8bc99ee386bbeda06cf7","tags":[["alt","A short note: Follower counts are fake anyways mostly bots and d..."],["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nostr.land/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["p","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","wss://theforest.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["r","https://i.nostr.build/UNySfrtPFqITzAiM.jpg"],["r","https://npub.world/"],["r","https://i.nostr.build/2LHKlcf7aP8kF6cl.jpg"],["r","https://i.nostr.build/7yw09F2YQHZ3lVws.jpg"],["r","https://nostr.band./"],["r","https://i.nostr.build/8bjb55FjOB16Y13G.jpg"],["r","https://i.nostr.build/N912BIJwCZa4sBot.jpg"],["r","https://i.nostr.build/PC3Nd0StlG5VLiYz.jpg"],["r","https://i.nostr.build/Q3r3PCl9BuKbvK7h.jpg"],["r","https://i.nostr.build/rWxOSW74gwlUCF6C.jpg"]]}] +[11:08:21.964] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"也算是一个好办法了","created_at":1759417667,"id":"54cd980c605097e61ce9d1555494e5ee1acb270141620a0496b1a3c68cbd5909","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"c70ca6dd6e04ebd30f99e3d4bdef5d60e3f3fe364fe0f100273e17f3140a07e0f3bc9382fc8f889fea47271b75c7bb3d30840fb059177880e2b5e2190f2755b8","tags":[["e","b0b61731b8d6781a39c0f24d15f240665d2dccb1e00b4155ff59ff6a95d122e4","","root"],["e","f02bda6325771a4d8df0891996e2dbca5b834b5421b9935098ccaa320d869af9","","reply"],["p","16525a09c429648052b3be16d25aa59b4fc2bc13ca936c6f1c96266349632845"],["p","81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5"]]}] +[11:08:22.025] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"A lot of opinion and no fact. You didn't say where he's wrong, or why you think that. You're just insulting people as if it's a valid argument, and it isn't. \n\n","created_at":1759417660,"id":"1c15cb88d6ad11ebffd7c6c21b33b2ffa89149dd2e632f925a5f2d4a80507458","kind":1,"pubkey":"148f4cf17719a3f4f07e6f3f1a900bf440adb681049d40a216e54f976de4345d","sig":"5461a3fdbb12d89c434c535a0519c639a38fb84c824b5bb2f382c6352ee05cad185eb4c32780bf0655bd448ed9adb6cc00e164a080796a2df02442a0517d7ff8","tags":[["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://premium.primal.net/"],["p","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9","wss://nostr.mom"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/"],["e","6a9c85d42b7ebf5c7f6cc294343438530b362822d0083c967390c612f1220f45","wss://nostr.mom","reply","ec99edc5567e02815fb15020285e2fa8390931cedf59c83d6bb2c5f6ee1530b9"],["e","d78234a9f86ed09899536cf3b3e01882157a58fffe1f5fa05df113018cb0381b","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"]]}] +[11:08:22.085] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:08:26.131] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"incandescent maximalism posting https://blossom.primal.net/cf6a672cc1ec7cb67ba656310caeb8e4b231ee6748c44fb4a07d98821ba25948.png ","created_at":1759417700,"id":"27063e6cf536c6c6c0cdeebde74d454e11e79e4951aa049120b3e0b0416e6eba","kind":1,"pubkey":"0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564","sig":"4f00fa6f59d472236e65523b0a5b460993555ba7ec52e800b979b8562fa9587e25ce62d7a91edb8eb21232ea39320fb12237bd996d7c4cb9955352e4d58f9236","tags":[["r","wss://atlas.nostr.land/"],["r","wss://eden.nostr.land/","read"],["r","wss://filter.nostr.wine/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://nostrelites.org/"],["r","wss://premium.primal.net/"],["r","wss://nostr-pub.wellorder.net/"]]}] +[11:08:26.524] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ας αÏχίσουμε ξανά 🙂\nhttps://i.nostr.build/1uZ15gIceK9XsCJ4.jpg\n#sketchGAR #kidstr #sketch #kids #nostr #nostrkid #kidart","created_at":1759417706,"id":"ccc1a45ed013e7514a8e8ba90679f764ace3e2268ed9da1e0cbc4c7dbf9e077f","kind":1,"pubkey":"9624cd2021bdeaa86a4443bbcfe1aa688bb775d63c0f54a057de631353882db0","sig":"c9a08be93a765738897ad39548bb22caba394ec5929a56c772d072f465165da5aac720076a53420f2dacd538820bdd53827e7e8ebffc9dab831248552f12bac8","tags":[["alt","A short note: ας αÏχίσουμε ξανά 🙂\nhttps://i.nostr.build/1uZ15gI..."],["t","sketchGAR"],["t","sketchgar"],["t","kidstr"],["t","sketch"],["t","kids"],["t","nostr"],["t","nostrkid"],["t","kidart"],["r","https://i.nostr.build/1uZ15gIceK9XsCJ4.jpg"]]}] +[11:08:28.023] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"call it the 'FUCK YEAH' button","created_at":1759417707,"id":"7980b844561d0a2f4a29cdc452afd73c384e8d3f38384998b85d70d7274b0364","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"eada8d5d2afc4a855a11e5965f31a80c47fafc2328ee3805ebb9d2b3f338c2328be36ad9e4342c6ccc2beabeaf1d7681bd25479d70c3bede8b50f142a1e45665","tags":[["e","9c24b48e361b88001dd3e8e2fe1091814a618d9eb11da5c6108d7237bea0b611","wss://relay.damus.io/","root","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"],["p","4c96d763eb2fe01910f7e7220b7c7ecdbe1a70057f344b9f79c28af080c3ee30"],["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"]]}] +[11:08:28.341] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"More than 45 Turkish civilian ships are heading directly toward Gaza.\n\nThis comes as a response to Israel intercepting the Global Sumud Flotilla convoy. https://video.nostr.build/8e6a3f1ae65bf12aa6fe0d0aeb278372233e0a14fae78c5eea137836788b2281.mp4","created_at":1759417707,"id":"29eec8798d18f5d1702b4fab2ab7603aca2b76a256cb73e1b812982bdba8de4a","kind":1,"pubkey":"3a81d391e062ec349382a1cb436ed3717116d7709ac0503c6a62e24cf537e662","sig":"38c932cf587cb03e9f215589fac2bc7245cdb8d8fcdc696826a7296c37e50af7c54cc8c46a900952e146e1e550568f505aedf85db8a0ac93f926bf5595f6a658","tags":[["alt","A short note: More than 45 Turkish civilian ships are heading di..."],["r","https://video.nostr.build/8e6a3f1ae65bf12aa6fe0d0aeb278372233e0a14fae78c5eea137836788b2281.mp4"],["imeta","url https://video.nostr.build/8e6a3f1ae65bf12aa6fe0d0aeb278372233e0a14fae78c5eea137836788b2281.mp4","x 4b5b734fa04d654bb79e1dc73fa21c383fbd9c076200bd8c6497d57b7b8ba9ea","size 2799043","m video/mp4","dim 360x640","blurhash ]yAx$ZofazWXaz%%kCf6j[fQRoWXj[oej[M|a}fkfRfQV?oLayWCayjYazf7f6a}kCWCj[oej@ofj[fQfQjsj?oeayWVa#","ox 4b5b734fa04d654bb79e1dc73fa21c383fbd9c076200bd8c6497d57b7b8ba9ea","alt "]]}] +[11:08:28.402] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"call it the 'FUCK YEAH' button","created_at":1759417708,"id":"a564e872d54c770297813d7ff43f56385b4e480152e92d36c370606b78c03042","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"6a410d9679aa4e6f01d612a4fa6b176c65f4ffa29bed5973daac07e3bf462003f86891d677ac0d0c0450229d56542ca58aadb55635b5f6a7a4f1c7fc61de0dd3","tags":[["e","9c24b48e361b88001dd3e8e2fe1091814a618d9eb11da5c6108d7237bea0b611","wss://relay.damus.io/","root","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"],["p","4c96d763eb2fe01910f7e7220b7c7ecdbe1a70057f344b9f79c28af080c3ee30"],["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"]]}] +[11:08:33.171] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"💖 Dianne Foster (1928 – 2019) Canadian actress of Ukrainian descent 💫 https://image.nostr.build/ff3314c59410df3d29fb97e2d0ed8cf4260808fd464eb83f3e48d542ada54a72.jpg","created_at":1759417712,"id":"4484308dbf4320ab21e0c11b1f3bfb9db7b2e2aaf5be5f28914967b389b9c71e","kind":1,"pubkey":"fd4472fc9ffe47b2a778ed8f546df1b8c69e01726a402e5792ce45d62d3afbdd","sig":"0601ef9ce7b2df939fb7cfb936e2da5863a49d1fa9c2d5981d1e4745b1950af7d893861a615b1fa1ff80f07f52f4ca795367d688816f04435839c4feb3c5bf70","tags":[["alt","A short note: 💖 Dianne Foster (1928 – 2019) Canadian actress of..."],["r","https://image.nostr.build/ff3314c59410df3d29fb97e2d0ed8cf4260808fd464eb83f3e48d542ada54a72.jpg"],["imeta","url https://image.nostr.build/ff3314c59410df3d29fb97e2d0ed8cf4260808fd464eb83f3e48d542ada54a72.jpg","x b51fe24e2a506468da1a6a769188c3ad9a33751d7eeffa9e566ff49ef257df57","size 58237","m image/jpeg","dim 768x992","blurhash _NO49xM{~qWB9Fxu-;_3xu%MWBRjayxu9FM{IUt7j[RjRj~qofM{WBj[RjafM{WBRjayj[t7j[t7RjWBj[WBofoffQofofofayayofRjWBWBofj[ayWBxut7kCayj[WBWB","ox b51fe24e2a506468da1a6a769188c3ad9a33751d7eeffa9e566ff49ef257df57","alt Black and white photo of vintage actress Dianne Foster."]]}] +[11:08:40.313] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ok lets go with the numbers in your OP then. Both are up. Only a complete buffoon would say something rising in value is bad. And you talk ponzi scheme while using solana? 🤣","created_at":1759417721,"id":"5e227b72974a020fa413e8fdfe40e0d2dee657c452e4316352516a4b146031ea","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"923b51074313f3fb9bebf4b7edc3ba1d382bf702e8f1fc456c0c373c64d5db1cc2e0dcde418b480bc5b0dd0518d415ecc903f2891da6a6fa97a896dad8540ba4","tags":[["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee","","mention"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","","mention"],["p","be49045474d8234adbd38dff67bbb9ae2a6d0696bf809e44e9cd12aac0ea6318","","mention"],["e","beba69ce5e50f241e09e136df8b626589dd3bd3df213f8131d684a1396f2489b","","root"],["e","781bc0a2914eb4e4c2946f681a5076365fcc94de064f061a2adbda92f3eb5f4c","","reply"]]}] +[11:08:40.928] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nevent1qvzqqqqqqypzqqyveg0jvyu5pxep34uez4jkqktsxa4prrsvv0zl6j7wfrzh4fnmqy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yh8qunfd4skctnwv46z7qpqnsjtfr3krwyqq8wnar30uyy3s99xrrv7kyw6t3ss34er004qkcgs26z3yd\n\nnostr:npub1gcxzte5zlkncx26j68ez60fzkvtkm9e0vrwdcvsjakxf9mu9qewqlfnj5z","created_at":1759417720,"id":"9a2581f640336092a3b0ee2e154ca2332a50138a43fd78298670522bd19fd6e3","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"e4f2b9b611c6d5bcff8da12c466315c170caf8e2b974480a5e095be58714c3ee52cd08154e5744662393cd61fae707e0eed2a9dfe84599cbdd9c67f1c45af662","tags":[["q","9c24b48e361b88001dd3e8e2fe1091814a618d9eb11da5c6108d7237bea0b611","wss://relay.damus.io/"],["p","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"]]}] +[11:08:41.763] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"A departure delay has been issued for Chicago Midway International #Airport (#MDW) due to traffic management initiatives. Current delays are 16-30 minutes and increasing. #AirportStatusBot","created_at":1759417720,"id":"4149ad8d0e051aa3bf0e87d61d1ffe3b9124541d2148425acd1457186d5fef6f","kind":1,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"64bd49e404747e5a15532ee9035a6b04cc5870e4090ec9698c9d95674aa4cb138a6b85b7d5d0a29006f81a88b22942cbe28a17349873045571826c95a095ceb9","tags":[["t","airport"],["t","mdw"],["t","airportstatusbot"]]}] +[11:08:42.216] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:08:42.327] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:08:42.387] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:08:42.448] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:08:43.776] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What tools are you currently utilizing?","created_at":1759417722,"id":"1e846e0eaf6564103b18bec66ca4b12c9c6e7c3251247fe78c494dd0dfa90860","kind":1,"pubkey":"61bf790b2094afb03495c9e136acf615be0fccc2cb95b5acfb5f6ccefe18b062","sig":"f88e1da5ee9ca2a09af9cc5358c5febfd4339375946016af9a9e7ebdc74a95bbc0775ae3e267aadfc2ca52a9f4c923a4998ff1cdcf59b57e2b54b1631fb97761","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","reply","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:08:45.497] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:38 IST\n\nBlock Number: 917388\nFee Rate: ₹62\nTime to mine: 00:00","created_at":1759417722,"id":"f3772a6d8e53bed6e6191df549bbfcccbf185989db15eb5456eee90dafa0b849","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"8859941d071c381f226908526b34c28b240c82f766a4cd77363a77a8b6bbe9cf022bd0f7464556d93ce168449c2c029a0c83ebf1f44216f735a992caf509d0cd","tags":[]}] +[11:08:48.108] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917388\nWeight: 3993363\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93.png","created_at":1759417727,"id":"d4b4114ba54fecc6504bead43c605dd765d21a522a192f2fa7b608c434683fbd","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"968109fb44c94a6f53535122ddb01e475cf20de84668fc8875e90222e792dc0c36232820d3c612fa590d08a1f0f9d3bd8a2e5ac5d1c3cdb7936d2caec8515952","tags":[]}] +[11:08:48.280] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Legs \nhttps://images2.imgbox.com/62/89/Xbr76XfW_o.jpg \n#FitnessModel ","created_at":1759417727,"id":"857d81b1688aca8fed19048c5208b2cf5c37651d58a3532ffb37d98889e7f9f2","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"b242e02d63affa2030953997ec5efd810cd441f74c2cbaaecba45cf736b33c389653a06a0b8febc7848601b9c4747c04bcb4eb2377a30b3dc1e11b732e88a812","tags":[]}] +[11:08:49.225] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"you are a force of nature, my fren. grateful for your hard work.","created_at":1759417728,"id":"f4453e4a998ed0102edec85fd737a35d8d93c468917af92d75c7c9f598e4ed80","kind":1,"pubkey":"7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","sig":"84f365ad2593f7db710e6b7286376a61516942010674b4bfad78be7066d2910f6fcf9f13c9c51d3666524b935de5fe76f489c8be013e720597d6450031593a7d","tags":[["e","ce950ec7f98c40cd70cba5179c082fa7d023628de09591ffb1ee98791408fe99","wss://theforest.nostr1.com/","root","266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5"],["p","266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5"],["client","jumble"]]}] +[11:08:51.168] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:08:51.320] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"you are a force of nature, my fren. grateful for your hard work.","created_at":1759417728,"id":"f4453e4a998ed0102edec85fd737a35d8d93c468917af92d75c7c9f598e4ed80","kind":1,"pubkey":"7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","sig":"84f365ad2593f7db710e6b7286376a61516942010674b4bfad78be7066d2910f6fcf9f13c9c51d3666524b935de5fe76f489c8be013e720597d6450031593a7d","tags":[["e","ce950ec7f98c40cd70cba5179c082fa7d023628de09591ffb1ee98791408fe99","wss://theforest.nostr1.com/","root","266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5"],["p","266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5"],["client","jumble"]]}] +[11:08:51.381] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Legs \nhttps://images2.imgbox.com/62/89/Xbr76XfW_o.jpg \n#FitnessModel ","created_at":1759417727,"id":"857d81b1688aca8fed19048c5208b2cf5c37651d58a3532ffb37d98889e7f9f2","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"b242e02d63affa2030953997ec5efd810cd441f74c2cbaaecba45cf736b33c389653a06a0b8febc7848601b9c4747c04bcb4eb2377a30b3dc1e11b732e88a812","tags":[]}] +[11:08:51.441] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917388\nWeight: 3993363\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93.png","created_at":1759417727,"id":"d4b4114ba54fecc6504bead43c605dd765d21a522a192f2fa7b608c434683fbd","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"968109fb44c94a6f53535122ddb01e475cf20de84668fc8875e90222e792dc0c36232820d3c612fa590d08a1f0f9d3bd8a2e5ac5d1c3cdb7936d2caec8515952","tags":[]}] +[11:08:51.502] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:38 IST\n\nBlock Number: 917388\nFee Rate: ₹62\nTime to mine: 00:00","created_at":1759417722,"id":"f3772a6d8e53bed6e6191df549bbfcccbf185989db15eb5456eee90dafa0b849","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"8859941d071c381f226908526b34c28b240c82f766a4cd77363a77a8b6bbe9cf022bd0f7464556d93ce168449c2c029a0c83ebf1f44216f735a992caf509d0cd","tags":[]}] +[11:08:51.562] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What tools are you currently utilizing?","created_at":1759417722,"id":"1e846e0eaf6564103b18bec66ca4b12c9c6e7c3251247fe78c494dd0dfa90860","kind":1,"pubkey":"61bf790b2094afb03495c9e136acf615be0fccc2cb95b5acfb5f6ccefe18b062","sig":"f88e1da5ee9ca2a09af9cc5358c5febfd4339375946016af9a9e7ebdc74a95bbc0775ae3e267aadfc2ca52a9f4c923a4998ff1cdcf59b57e2b54b1631fb97761","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","reply","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:08:51.623] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ok lets go with the numbers in your OP then. Both are up. Only a complete buffoon would say something rising in value is bad. And you talk ponzi scheme while using solana? 🤣","created_at":1759417721,"id":"5e227b72974a020fa413e8fdfe40e0d2dee657c452e4316352516a4b146031ea","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"923b51074313f3fb9bebf4b7edc3ba1d382bf702e8f1fc456c0c373c64d5db1cc2e0dcde418b480bc5b0dd0518d415ecc903f2891da6a6fa97a896dad8540ba4","tags":[["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee","","mention"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","","mention"],["p","be49045474d8234adbd38dff67bbb9ae2a6d0696bf809e44e9cd12aac0ea6318","","mention"],["e","beba69ce5e50f241e09e136df8b626589dd3bd3df213f8131d684a1396f2489b","","root"],["e","781bc0a2914eb4e4c2946f681a5076365fcc94de064f061a2adbda92f3eb5f4c","","reply"]]}] +[11:08:51.684] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"A departure delay has been issued for Chicago Midway International #Airport (#MDW) due to traffic management initiatives. Current delays are 16-30 minutes and increasing. #AirportStatusBot","created_at":1759417720,"id":"4149ad8d0e051aa3bf0e87d61d1ffe3b9124541d2148425acd1457186d5fef6f","kind":1,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"64bd49e404747e5a15532ee9035a6b04cc5870e4090ec9698c9d95674aa4cb138a6b85b7d5d0a29006f81a88b22942cbe28a17349873045571826c95a095ceb9","tags":[["t","airport"],["t","mdw"],["t","airportstatusbot"]]}] +[11:08:51.744] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nevent1qvzqqqqqqypzqqyveg0jvyu5pxep34uez4jkqktsxa4prrsvv0zl6j7wfrzh4fnmqy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yh8qunfd4skctnwv46z7qpqnsjtfr3krwyqq8wnar30uyy3s99xrrv7kyw6t3ss34er004qkcgs26z3yd\n\nnostr:npub1gcxzte5zlkncx26j68ez60fzkvtkm9e0vrwdcvsjakxf9mu9qewqlfnj5z","created_at":1759417720,"id":"9a2581f640336092a3b0ee2e154ca2332a50138a43fd78298670522bd19fd6e3","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"e4f2b9b611c6d5bcff8da12c466315c170caf8e2b974480a5e095be58714c3ee52cd08154e5744662393cd61fae707e0eed2a9dfe84599cbdd9c67f1c45af662","tags":[["q","9c24b48e361b88001dd3e8e2fe1091814a618d9eb11da5c6108d7237bea0b611","wss://relay.damus.io/"],["p","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"],["p","460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c"]]}] +[11:08:51.805] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"💖 Dianne Foster (1928 – 2019) Canadian actress of Ukrainian descent 💫 https://image.nostr.build/ff3314c59410df3d29fb97e2d0ed8cf4260808fd464eb83f3e48d542ada54a72.jpg","created_at":1759417712,"id":"4484308dbf4320ab21e0c11b1f3bfb9db7b2e2aaf5be5f28914967b389b9c71e","kind":1,"pubkey":"fd4472fc9ffe47b2a778ed8f546df1b8c69e01726a402e5792ce45d62d3afbdd","sig":"0601ef9ce7b2df939fb7cfb936e2da5863a49d1fa9c2d5981d1e4745b1950af7d893861a615b1fa1ff80f07f52f4ca795367d688816f04435839c4feb3c5bf70","tags":[["alt","A short note: 💖 Dianne Foster (1928 – 2019) Canadian actress of..."],["r","https://image.nostr.build/ff3314c59410df3d29fb97e2d0ed8cf4260808fd464eb83f3e48d542ada54a72.jpg"],["imeta","url https://image.nostr.build/ff3314c59410df3d29fb97e2d0ed8cf4260808fd464eb83f3e48d542ada54a72.jpg","x b51fe24e2a506468da1a6a769188c3ad9a33751d7eeffa9e566ff49ef257df57","size 58237","m image/jpeg","dim 768x992","blurhash _NO49xM{~qWB9Fxu-;_3xu%MWBRjayxu9FM{IUt7j[RjRj~qofM{WBj[RjafM{WBRjayj[t7j[t7RjWBj[WBofoffQofofofayayofRjWBWBofj[ayWBxut7kCayj[WBWB","ox b51fe24e2a506468da1a6a769188c3ad9a33751d7eeffa9e566ff49ef257df57","alt Black and white photo of vintage actress Dianne Foster."]]}] +[11:08:51.865] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"call it the 'FUCK YEAH' button","created_at":1759417708,"id":"a564e872d54c770297813d7ff43f56385b4e480152e92d36c370606b78c03042","kind":1,"pubkey":"3c559080f647074a638e9cc6d4c487a06bfab810402aab9a6794fb49a053153e","sig":"6a410d9679aa4e6f01d612a4fa6b176c65f4ffa29bed5973daac07e3bf462003f86891d677ac0d0c0450229d56542ca58aadb55635b5f6a7a4f1c7fc61de0dd3","tags":[["e","9c24b48e361b88001dd3e8e2fe1091814a618d9eb11da5c6108d7237bea0b611","wss://relay.damus.io/","root","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"],["p","4c96d763eb2fe01910f7e7220b7c7ecdbe1a70057f344b9f79c28af080c3ee30"],["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","008cca1f26139409b218d7991565605970376a118e0c63c5fd4bce48c57aa67b"]]}] +[11:08:51.926] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:08:59.291] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"SAME. When that came out, I was so depressed and embarrassed to be rocking the silver 😂😭","created_at":1759417738,"id":"4a607a27b471d053038a8c21c645f85c24a47030db8e1e96bd75b014dd846f36","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"0ce698d4380ccee02db0e9505d49b02ed9fc40af4648d3755f3b0a6b7809176bc9c4654d1aaac0a0c86bd443055f102ec665a780b92b45c9b7b0c172854ccc48","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://bitcoiner.social","root"],["e","bab08de17444c136c8fa44280c79cb273c5f15a4b97b5a3cffc7d18b7c38142a","","reply"],["p","e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13"]]}] +[11:09:00.629] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:09:02.240] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqsfev65tsmfgrv69mux65x4c7504wgrzrxgnrzrgj70cnyz9l68hjspramhxue69uhhyetvv9ujucnfw33k76twv35hxarjd93hgtn0wfnsz9nhwden5te0wfjkccte9ec8y6tdv9kzumn9ws9u70ex ‘s Mempool TV app for Apple TV is now available on the App Store. ðŸŽðŸ“º\n\n#MempoolTV #bitcoin #btc\n\nDownload it today!!\nhttps://apps.apple.com/us/app/mempooltv/id6751822510","created_at":1759417741,"id":"e616c957f0b23d7db60a94ed65ee50c283ea7f865e61a6b4bf968ff145242b3b","kind":1,"pubkey":"3f1de51da0f9d5248a96ed1c533b7a2b98d9f80aebc81b214ab507f6c7a170a4","sig":"9a3ff493c6aef476bdf8c0e2f8e532b9c70a4b733433b9c2d06b97c2eed7172d1e6ece33485d3d1f4f14b017b657b2cf3a1d1e5b115909131e18c4b0d4799de3","tags":[["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca","wss://relay.bitcoindistrict.org","mention"],["t","MempoolTV"],["t","bitcoin"],["t","btc"]]}] +[11:09:03.315] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM","created_at":1759417742,"id":"6519b678251c6605e99dd85eddbf724b01abc6a2d9e5e17958151cd3babfff6b","kind":1,"pubkey":"c546c5a7b93ee93ff4b210b2d2db7b0cc051e133d3af570a29f1489234f50a14","sig":"2ea21d2576d016183fc628be16df07eb084b4e90908d774a705fb084e0707c6478d84dbb14e03e1330caa550587d839192dd5d750d8a2952e8b236281abae8c3","tags":[["e","e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","wss://@nos.lol","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","","mention"]]}] +[11:09:12.171] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:09:12.282] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:09:12.342] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:09:12.403] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:09:12.463] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:09:12.574] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:39 @ 917,388","created_at":1759417752,"id":"72260f77b2465ea24011b6ab6d7b4b19ac88d46ce00b10bdac0f25f8f2b42365","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"5f77dce26d816ac1b4bdfb649628b5c23a757ae4032dcb153736c0efc1031a461685de2256babdc45b7dfc802c61f1c30f85bca62bce8c2b85ce2dda839063d2","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:09:21.161] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:09:21.313] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:39 @ 917,388","created_at":1759417752,"id":"72260f77b2465ea24011b6ab6d7b4b19ac88d46ce00b10bdac0f25f8f2b42365","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"5f77dce26d816ac1b4bdfb649628b5c23a757ae4032dcb153736c0efc1031a461685de2256babdc45b7dfc802c61f1c30f85bca62bce8c2b85ce2dda839063d2","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:09:21.373] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM","created_at":1759417742,"id":"6519b678251c6605e99dd85eddbf724b01abc6a2d9e5e17958151cd3babfff6b","kind":1,"pubkey":"c546c5a7b93ee93ff4b210b2d2db7b0cc051e133d3af570a29f1489234f50a14","sig":"2ea21d2576d016183fc628be16df07eb084b4e90908d774a705fb084e0707c6478d84dbb14e03e1330caa550587d839192dd5d750d8a2952e8b236281abae8c3","tags":[["e","e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","wss://@nos.lol","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","","mention"]]}] +[11:09:21.434] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqsfev65tsmfgrv69mux65x4c7504wgrzrxgnrzrgj70cnyz9l68hjspramhxue69uhhyetvv9ujucnfw33k76twv35hxarjd93hgtn0wfnsz9nhwden5te0wfjkccte9ec8y6tdv9kzumn9ws9u70ex ‘s Mempool TV app for Apple TV is now available on the App Store. ðŸŽðŸ“º\n\n#MempoolTV #bitcoin #btc\n\nDownload it today!!\nhttps://apps.apple.com/us/app/mempooltv/id6751822510","created_at":1759417741,"id":"e616c957f0b23d7db60a94ed65ee50c283ea7f865e61a6b4bf968ff145242b3b","kind":1,"pubkey":"3f1de51da0f9d5248a96ed1c533b7a2b98d9f80aebc81b214ab507f6c7a170a4","sig":"9a3ff493c6aef476bdf8c0e2f8e532b9c70a4b733433b9c2d06b97c2eed7172d1e6ece33485d3d1f4f14b017b657b2cf3a1d1e5b115909131e18c4b0d4799de3","tags":[["p","9cb3545c36940d9a2ef86d50d5c7a8fab90310cc898c4344bcfc4c822ff47bca","wss://relay.bitcoindistrict.org","mention"],["t","MempoolTV"],["t","bitcoin"],["t","btc"]]}] +[11:09:21.495] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"SAME. When that came out, I was so depressed and embarrassed to be rocking the silver 😂😭","created_at":1759417738,"id":"4a607a27b471d053038a8c21c645f85c24a47030db8e1e96bd75b014dd846f36","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"0ce698d4380ccee02db0e9505d49b02ed9fc40af4648d3755f3b0a6b7809176bc9c4654d1aaac0a0c86bd443055f102ec665a780b92b45c9b7b0c172854ccc48","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://bitcoiner.social","root"],["e","bab08de17444c136c8fa44280c79cb273c5f15a4b97b5a3cffc7d18b7c38142a","","reply"],["p","e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13"]]}] +[11:09:21.555] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"you are a force of nature, my fren. grateful for your hard work.","created_at":1759417728,"id":"f4453e4a998ed0102edec85fd737a35d8d93c468917af92d75c7c9f598e4ed80","kind":1,"pubkey":"7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194","sig":"84f365ad2593f7db710e6b7286376a61516942010674b4bfad78be7066d2910f6fcf9f13c9c51d3666524b935de5fe76f489c8be013e720597d6450031593a7d","tags":[["e","ce950ec7f98c40cd70cba5179c082fa7d023628de09591ffb1ee98791408fe99","wss://theforest.nostr1.com/","root","266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5"],["p","266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5"],["client","jumble"]]}] +[11:09:21.616] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Legs \nhttps://images2.imgbox.com/62/89/Xbr76XfW_o.jpg \n#FitnessModel ","created_at":1759417727,"id":"857d81b1688aca8fed19048c5208b2cf5c37651d58a3532ffb37d98889e7f9f2","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"b242e02d63affa2030953997ec5efd810cd441f74c2cbaaecba45cf736b33c389653a06a0b8febc7848601b9c4747c04bcb4eb2377a30b3dc1e11b732e88a812","tags":[]}] +[11:09:21.676] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917388\nWeight: 3993363\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93.png","created_at":1759417727,"id":"d4b4114ba54fecc6504bead43c605dd765d21a522a192f2fa7b608c434683fbd","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"968109fb44c94a6f53535122ddb01e475cf20de84668fc8875e90222e792dc0c36232820d3c612fa590d08a1f0f9d3bd8a2e5ac5d1c3cdb7936d2caec8515952","tags":[]}] +[11:09:21.737] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:38 IST\n\nBlock Number: 917388\nFee Rate: ₹62\nTime to mine: 00:00","created_at":1759417722,"id":"f3772a6d8e53bed6e6191df549bbfcccbf185989db15eb5456eee90dafa0b849","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"8859941d071c381f226908526b34c28b240c82f766a4cd77363a77a8b6bbe9cf022bd0f7464556d93ce168449c2c029a0c83ebf1f44216f735a992caf509d0cd","tags":[]}] +[11:09:21.797] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"What tools are you currently utilizing?","created_at":1759417722,"id":"1e846e0eaf6564103b18bec66ca4b12c9c6e7c3251247fe78c494dd0dfa90860","kind":1,"pubkey":"61bf790b2094afb03495c9e136acf615be0fccc2cb95b5acfb5f6ccefe18b062","sig":"f88e1da5ee9ca2a09af9cc5358c5febfd4339375946016af9a9e7ebdc74a95bbc0775ae3e267aadfc2ca52a9f4c923a4998ff1cdcf59b57e2b54b1631fb97761","tags":[["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://relay.damus.io/","reply","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"]]}] +[11:09:21.858] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ok lets go with the numbers in your OP then. Both are up. Only a complete buffoon would say something rising in value is bad. And you talk ponzi scheme while using solana? 🤣","created_at":1759417721,"id":"5e227b72974a020fa413e8fdfe40e0d2dee657c452e4316352516a4b146031ea","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"923b51074313f3fb9bebf4b7edc3ba1d382bf702e8f1fc456c0c373c64d5db1cc2e0dcde418b480bc5b0dd0518d415ecc903f2891da6a6fa97a896dad8540ba4","tags":[["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee","","mention"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","","mention"],["p","be49045474d8234adbd38dff67bbb9ae2a6d0696bf809e44e9cd12aac0ea6318","","mention"],["e","beba69ce5e50f241e09e136df8b626589dd3bd3df213f8131d684a1396f2489b","","root"],["e","781bc0a2914eb4e4c2946f681a5076365fcc94de064f061a2adbda92f3eb5f4c","","reply"]]}] +[11:09:21.919] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:09:24.342] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Wordle 1,566 3/6*\n\n⬛⬛⬛⬛⬛\n🟨⬛⬛⬛🟩\n🟩🟩🟩🟩🟩","created_at":1759417764,"id":"d5d55d980b6be1fff67a643957881cd7da5590df743c679433fece3b8e0d5a61","kind":1,"pubkey":"f07dec60e40c0f0d6baf9a9f18c4ceba266266fa4fa0e322c1925498cb293c36","sig":"8508b8169ba79e96d8737c5b509b5c1bfe85a9e1f1c1ef3d51863f36ef80052f4fa09f650c447d94bc6c9764d056e04bf45acf9e0128924498500475233e3370","tags":[]}] +[11:09:26.617] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"who would want to live in a very expensive unaffordable torture drone garden","created_at":1759417765,"id":"d42b5d5980d05fbf29c3f41595868979825043888f81c51225f4de7326d0e0eb","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"e69124fc85c488fc31875e6659e16d7704830311601a4296e18d3dd7e5a7378986f52cb3fd1a539107571f57fc826db7f56a1b1664d1d7bb40e39346c8bc733a","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","dacaa460d17076b2aca9bb3097fed94977ebde22040f4a04a921adadbfba21dd","","reply"]]}] +[11:09:26.678] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🟥SELL BTC for USD\nPrice: 118919USD (0%)\nBTC: 0.002\nUSD: 238\nMethod: Zelle\nCreated: 2025-10-02T15:08:47Z","created_at":1759417766,"id":"df472292b77e7be43181c2291d12d548ddb9dc5f7ac7f5ff47d68477988f323e","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"0e13826dabfe19f63e35bfd547a33d743b09f80bac3ad514eb050f5e2a10749c4f2a4aa364a4d032b838af607f2f8508c3819fde1305fb27e9e4deb47a85094b","tags":[]}] +[11:09:27.210] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Shitcoiner in your soul. .Pathetic.","created_at":1759417756,"id":"5c118d4d53a6d6f74abe40289f6bbd2433c0b82c4fc9b1b2bc2b400f884162c3","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"ec66c925f15596799382e55138a8cbd236c686e7ba022fc10de09c7fe70476fba9919977032ad79bd5b3b4470821c3099e2816bc15b9686e4cf1ff919830654a","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://nos.lol/","root"],["e","dd506092c84a2736c69bf5ac1fb7f088d090218f5b21fc05adcfac042fc077ce","wss://relay.snort.social/","reply","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"]]}] +[11:09:29.090] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That’s just nice","created_at":1759417768,"id":"c34a4d450efa0326747f1895bc1a067f67ab54f4122da10da81e74ba3c8ab177","kind":1,"pubkey":"177bfd1640883bcf86e5028843ef069094e75e8a12eed156958ddf6b347a07e4","sig":"5820949fa2a71efdda98124f2aca6968f1e97344ec849eee5741940d50adbe57888fa989da138042598f536e256e16dc880ec3691fa63226dd31623e0a6a7a3a","tags":[["e","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","","root"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"]]}] +[11:09:40.176] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¿ã‚“ãªã‚‚ã†sora2ã«ã‚ãã¡ã‚ƒã£ãŸã®ï¼Ÿ","created_at":1759417780,"id":"2c25e9f35a10159a7f18960952b79217b9b74aba7f3efb2aa9cae7a8bfb8b481","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"950a9128fd4b79812545f7e7d652f2e4542a28fa138ac77bcf47f5f8bba0a3c0c6f60e76e774ac4a8db962111650431fd73ce00dd4b612d425f21848f9e7bac4","tags":[]}] +[11:09:42.130] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:09:42.242] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:09:42.302] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:09:42.363] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:09:42.424] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:09:47.773] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂🤙","created_at":1759417787,"id":"01d8fc56d14cc43063ff58421798ae03764423d21d2a479501528794c47972a5","kind":1,"pubkey":"f508d64aeb31bac052327841cc7dd59c9d37c182102a048a439098a8bb816dab","sig":"9ccfdc57f1d6b67bb258d667fb8258f94914bf20ff223ef302fc79f35ff6e697ceec92cc0be75a8964e7546499b57846f0a4e7f21054f37e16dc58cdb328f2de","tags":[["e","d621d7b8f530c1bff85817ef9ce1b3df3ccbf0002232dd51302468a22f5e52e9","","root"],["p","a39d19ec238af1b14b8cf36185a933b141f994e2ff7a1323a4cbb65f3d88f61e"]]}] +[11:09:49.715] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã£ã¡ã‚ƒéŠã‚“ã§ã‚‹ã‚ˆ","created_at":1759417788,"id":"029b3188d76dcb8ecd6e7cd22eefa6abe653ed17783939cf0e156d2ec6879ca1","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"ffd2f39990c1391fda3d4118b9ba19b84fb50a66b33fceac44ad70f89a9dce2cb10b27d0489f6fde4d997c0b4b88e1aed7d924f64f8133611f7637a1e7eb86f7","tags":[]}] +[11:09:51.214] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:09:51.436] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã£ã¡ã‚ƒéŠã‚“ã§ã‚‹ã‚ˆ","created_at":1759417788,"id":"029b3188d76dcb8ecd6e7cd22eefa6abe653ed17783939cf0e156d2ec6879ca1","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"ffd2f39990c1391fda3d4118b9ba19b84fb50a66b33fceac44ad70f89a9dce2cb10b27d0489f6fde4d997c0b4b88e1aed7d924f64f8133611f7637a1e7eb86f7","tags":[]}] +[11:09:51.496] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"😂🤙","created_at":1759417787,"id":"01d8fc56d14cc43063ff58421798ae03764423d21d2a479501528794c47972a5","kind":1,"pubkey":"f508d64aeb31bac052327841cc7dd59c9d37c182102a048a439098a8bb816dab","sig":"9ccfdc57f1d6b67bb258d667fb8258f94914bf20ff223ef302fc79f35ff6e697ceec92cc0be75a8964e7546499b57846f0a4e7f21054f37e16dc58cdb328f2de","tags":[["e","d621d7b8f530c1bff85817ef9ce1b3df3ccbf0002232dd51302468a22f5e52e9","","root"],["p","a39d19ec238af1b14b8cf36185a933b141f994e2ff7a1323a4cbb65f3d88f61e"]]}] +[11:09:51.557] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¿ã‚“ãªã‚‚ã†sora2ã«ã‚ãã¡ã‚ƒã£ãŸã®ï¼Ÿ","created_at":1759417780,"id":"2c25e9f35a10159a7f18960952b79217b9b74aba7f3efb2aa9cae7a8bfb8b481","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"950a9128fd4b79812545f7e7d652f2e4542a28fa138ac77bcf47f5f8bba0a3c0c6f60e76e774ac4a8db962111650431fd73ce00dd4b612d425f21848f9e7bac4","tags":[]}] +[11:09:51.617] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That’s just nice","created_at":1759417768,"id":"c34a4d450efa0326747f1895bc1a067f67ab54f4122da10da81e74ba3c8ab177","kind":1,"pubkey":"177bfd1640883bcf86e5028843ef069094e75e8a12eed156958ddf6b347a07e4","sig":"5820949fa2a71efdda98124f2aca6968f1e97344ec849eee5741940d50adbe57888fa989da138042598f536e256e16dc880ec3691fa63226dd31623e0a6a7a3a","tags":[["e","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","","root"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"]]}] +[11:09:51.678] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🟥SELL BTC for USD\nPrice: 118919USD (0%)\nBTC: 0.002\nUSD: 238\nMethod: Zelle\nCreated: 2025-10-02T15:08:47Z","created_at":1759417766,"id":"df472292b77e7be43181c2291d12d548ddb9dc5f7ac7f5ff47d68477988f323e","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"0e13826dabfe19f63e35bfd547a33d743b09f80bac3ad514eb050f5e2a10749c4f2a4aa364a4d032b838af607f2f8508c3819fde1305fb27e9e4deb47a85094b","tags":[]}] +[11:09:51.739] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"who would want to live in a very expensive unaffordable torture drone garden","created_at":1759417765,"id":"d42b5d5980d05fbf29c3f41595868979825043888f81c51225f4de7326d0e0eb","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"e69124fc85c488fc31875e6659e16d7704830311601a4296e18d3dd7e5a7378986f52cb3fd1a539107571f57fc826db7f56a1b1664d1d7bb40e39346c8bc733a","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","dacaa460d17076b2aca9bb3097fed94977ebde22040f4a04a921adadbfba21dd","","reply"]]}] +[11:09:51.799] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Wordle 1,566 3/6*\n\n⬛⬛⬛⬛⬛\n🟨⬛⬛⬛🟩\n🟩🟩🟩🟩🟩","created_at":1759417764,"id":"d5d55d980b6be1fff67a643957881cd7da5590df743c679433fece3b8e0d5a61","kind":1,"pubkey":"f07dec60e40c0f0d6baf9a9f18c4ceba266266fa4fa0e322c1925498cb293c36","sig":"8508b8169ba79e96d8737c5b509b5c1bfe85a9e1f1c1ef3d51863f36ef80052f4fa09f650c447d94bc6c9764d056e04bf45acf9e0128924498500475233e3370","tags":[]}] +[11:09:51.860] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Shitcoiner in your soul. .Pathetic.","created_at":1759417756,"id":"5c118d4d53a6d6f74abe40289f6bbd2433c0b82c4fc9b1b2bc2b400f884162c3","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"ec66c925f15596799382e55138a8cbd236c686e7ba022fc10de09c7fe70476fba9919977032ad79bd5b3b4470821c3099e2816bc15b9686e4cf1ff919830654a","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://nos.lol/","root"],["e","dd506092c84a2736c69bf5ac1fb7f088d090218f5b21fc05adcfac042fc077ce","wss://relay.snort.social/","reply","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"]]}] +[11:09:51.920] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:39 @ 917,388","created_at":1759417752,"id":"72260f77b2465ea24011b6ab6d7b4b19ac88d46ce00b10bdac0f25f8f2b42365","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"5f77dce26d816ac1b4bdfb649628b5c23a757ae4032dcb153736c0efc1031a461685de2256babdc45b7dfc802c61f1c30f85bca62bce8c2b85ce2dda839063d2","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:09:51.981] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM","created_at":1759417742,"id":"6519b678251c6605e99dd85eddbf724b01abc6a2d9e5e17958151cd3babfff6b","kind":1,"pubkey":"c546c5a7b93ee93ff4b210b2d2db7b0cc051e133d3af570a29f1489234f50a14","sig":"2ea21d2576d016183fc628be16df07eb084b4e90908d774a705fb084e0707c6478d84dbb14e03e1330caa550587d839192dd5d750d8a2952e8b236281abae8c3","tags":[["e","e1d67da99c3e5f9738e09ebec0b97552e3d22e051e59995bbb56da7c4ddfadaf","wss://@nos.lol","root"],["p","adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","","mention"]]}] +[11:09:52.041] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:09:52.102] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yes, I can do it. Took a second when switching hands for my brain to coordinate it lol but then it was fine.","created_at":1759417792,"id":"b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","kind":1,"pubkey":"4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","sig":"1a13e3975c41c2dad583227aab984afc031cac725778a1fef9f26f3d12282085eb8e74d25ad398b0087f82655db375cb5bbacb586798536ba4907248e0690954","tags":[["alt","A short note: Yes, I can do it. Took a second when switching han..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://nostr.wine/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"]]}] +[11:09:55.595] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"一人ã§","created_at":1759417794,"id":"b25b11c53fd4ef049f3119df0563b48650133fb8f181458bf2e158c4c1cd9133","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"80530b5de61f2d20457e8024a37b5a3fdc36475f0addfddbb107859754cd4970da72f1e1aba69b57e61aa326d46ed964da9e25097ca552e59ca2aeef6c5c5594","tags":[]}] +[11:10:00.415] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 0:10 ------------✄","created_at":1759417800,"id":"e0bb1fa9a98249fd5a949a4edb37f402c2903ba8922f26be04cee82094d123e7","kind":1,"pubkey":"b1b4105a564aaddc8ae440a1b03a8ca0f36e0592aec502e84515948919aa52d5","sig":"bc6700a4fda6bba9132641f70a4cc2a27d4e380270f04711a787003b504f8e0574967e11628b4b39b9cf5e83940d0e19e0de4067d9e36dfd3437be9ee327dc31","tags":[]}] +[11:10:07.783] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Matthew, is that you? ","created_at":1759417807,"id":"9a7afd64edc393091aa2d63203734b06b1955fd1f0a8f9b475fb5c9b7741bc90","kind":1,"pubkey":"f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","sig":"5f83d32977699dc626f96c58d88b1db1e047a1f0e20c85da3913fb97ef378b171816557894e0a784bd95db03351e206b01ce8fa759994b0481d1978b228606a6","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","","mention"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["p","77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","","mention"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","","root"],["e","5c118d4d53a6d6f74abe40289f6bbd2433c0b82c4fc9b1b2bc2b400f884162c3","","reply"]]}] +[11:10:09.962] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"openfears36 bought 3 blocks! #satoshisettlers","created_at":1759417809,"id":"6d4c830e0425733505cbfd182cb338190a9d5a6095c8397fa42d75e5e1ff60fe","kind":1,"pubkey":"708ecf5209b99577d9087062a3e6e37f7b3f9f11e184606cd6af18c10b7a30f8","sig":"c3cee3a79668a9effd2c361371519cb501f7ffea02e7b06bac296a71c25fe47927e5665f491c06da29e7c60f6dd715e0563227238a33fb180fa6fd62357e52ae","tags":[]}] +[11:10:12.178] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:10:12.289] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:10:12.349] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:10:12.410] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:10:12.471] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:10:14.158] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/a8358a458b0843e171668fd1a03a8460e2155f75100b672ef36fa9f9f096bba9.webp\nhttps://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/5a79ee20d2fac62f6f61a3e41b099dac246b62dd144fd6753aa7821885b14977.webp\nhttps://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/de34901137c04ecda179940598775b4c0c18b7f06146410adacc47842b0efed3.webp","created_at":1759417813,"id":"eb1eeb03b3e70fe3d52f4aa9ca6fdd532f28a1cffae0976f4be59870e3784b42","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"80ae1ac9ffed8f145e8be8ea2ec6b537760b2a113a8bad81237a7377eeed6e9e3286469435bff925b3e8c2c9c24b523bde3053eb875de958cba7bad5fb2cdac3","tags":[]}] +[11:10:14.440] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã£ã‹","created_at":1759417814,"id":"03bef224e47ce658ea732029134b0ab7eded52b99c28c0d4652138395be04625","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"4e5a6c84db4589ffb6adbe36a2a981852034cbb09ec1eb025f848b102d3315a15b69a964d3152caeb10288ea7ca2dd810ca8c96c84e3b6f0c683c8d70413dec1","tags":[]}] +[11:10:19.039] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're saying I'm retarded.\nThat's what you're saying.","created_at":1759417820,"id":"08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"46ce77b8b9614099cda7a0b44bd1205059cbf61669b6d776c4edfdc36d466da4353e5ef2b75794d2560646b4c0153e2583d529a50565aa9b639482901feb74d1","tags":[["alt","A short note: You're saying I'm retarded.\nThat's what you're say..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","reply","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:10:21.201] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:10:21.353] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã†","created_at":1759417820,"id":"4fa97262e204d0cc6c1bc4c607c3c4bb270959e62a46f96b5bd0f4368433743c","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b994e14278ce34e37e19bfdb34b6b7759e8104dd1355da33a69ad88d98689a1ee26a1743158cbb5347a73770bf1613d7fbb5e6640116e85ec4bab3cffed3f155","tags":[]}] +[11:10:21.414] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're saying I'm retarded.\nThat's what you're saying.","created_at":1759417820,"id":"08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"46ce77b8b9614099cda7a0b44bd1205059cbf61669b6d776c4edfdc36d466da4353e5ef2b75794d2560646b4c0153e2583d529a50565aa9b639482901feb74d1","tags":[["alt","A short note: You're saying I'm retarded.\nThat's what you're say..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","reply","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:10:21.474] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãã£ã‹","created_at":1759417814,"id":"03bef224e47ce658ea732029134b0ab7eded52b99c28c0d4652138395be04625","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"4e5a6c84db4589ffb6adbe36a2a981852034cbb09ec1eb025f848b102d3315a15b69a964d3152caeb10288ea7ca2dd810ca8c96c84e3b6f0c683c8d70413dec1","tags":[]}] +[11:10:21.535] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/a8358a458b0843e171668fd1a03a8460e2155f75100b672ef36fa9f9f096bba9.webp\nhttps://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/5a79ee20d2fac62f6f61a3e41b099dac246b62dd144fd6753aa7821885b14977.webp\nhttps://cdn.nostrcheck.me/0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e/de34901137c04ecda179940598775b4c0c18b7f06146410adacc47842b0efed3.webp","created_at":1759417813,"id":"eb1eeb03b3e70fe3d52f4aa9ca6fdd532f28a1cffae0976f4be59870e3784b42","kind":1,"pubkey":"0406b1bbbe74fac9d4c4b464ddd236f416682c80cff54ce8096445a9f38dc16e","sig":"80ae1ac9ffed8f145e8be8ea2ec6b537760b2a113a8bad81237a7377eeed6e9e3286469435bff925b3e8c2c9c24b523bde3053eb875de958cba7bad5fb2cdac3","tags":[]}] +[11:10:21.595] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"openfears36 bought 3 blocks! #satoshisettlers","created_at":1759417809,"id":"6d4c830e0425733505cbfd182cb338190a9d5a6095c8397fa42d75e5e1ff60fe","kind":1,"pubkey":"708ecf5209b99577d9087062a3e6e37f7b3f9f11e184606cd6af18c10b7a30f8","sig":"c3cee3a79668a9effd2c361371519cb501f7ffea02e7b06bac296a71c25fe47927e5665f491c06da29e7c60f6dd715e0563227238a33fb180fa6fd62357e52ae","tags":[]}] +[11:10:21.655] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Matthew, is that you? ","created_at":1759417807,"id":"9a7afd64edc393091aa2d63203734b06b1955fd1f0a8f9b475fb5c9b7741bc90","kind":1,"pubkey":"f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","sig":"5f83d32977699dc626f96c58d88b1db1e047a1f0e20c85da3913fb97ef378b171816557894e0a784bd95db03351e206b01ce8fa759994b0481d1978b228606a6","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","","mention"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["p","77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","","mention"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","","root"],["e","5c118d4d53a6d6f74abe40289f6bbd2433c0b82c4fc9b1b2bc2b400f884162c3","","reply"]]}] +[11:10:21.716] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 0:10 ------------✄","created_at":1759417800,"id":"e0bb1fa9a98249fd5a949a4edb37f402c2903ba8922f26be04cee82094d123e7","kind":1,"pubkey":"b1b4105a564aaddc8ae440a1b03a8ca0f36e0592aec502e84515948919aa52d5","sig":"bc6700a4fda6bba9132641f70a4cc2a27d4e380270f04711a787003b504f8e0574967e11628b4b39b9cf5e83940d0e19e0de4067d9e36dfd3437be9ee327dc31","tags":[]}] +[11:10:21.776] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"一人ã§","created_at":1759417794,"id":"b25b11c53fd4ef049f3119df0563b48650133fb8f181458bf2e158c4c1cd9133","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"80530b5de61f2d20457e8024a37b5a3fdc36475f0addfddbb107859754cd4970da72f1e1aba69b57e61aa326d46ed964da9e25097ca552e59ca2aeef6c5c5594","tags":[]}] +[11:10:21.837] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yes, I can do it. Took a second when switching hands for my brain to coordinate it lol but then it was fine.","created_at":1759417792,"id":"b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","kind":1,"pubkey":"4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","sig":"1a13e3975c41c2dad583227aab984afc031cac725778a1fef9f26f3d12282085eb8e74d25ad398b0087f82655db375cb5bbacb586798536ba4907248e0690954","tags":[["alt","A short note: Yes, I can do it. Took a second when switching han..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://nostr.wine/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"]]}] +[11:10:21.897] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚ã£ã¡ã‚ƒéŠã‚“ã§ã‚‹ã‚ˆ","created_at":1759417788,"id":"029b3188d76dcb8ecd6e7cd22eefa6abe653ed17783939cf0e156d2ec6879ca1","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"ffd2f39990c1391fda3d4118b9ba19b84fb50a66b33fceac44ad70f89a9dce2cb10b27d0489f6fde4d997c0b4b88e1aed7d924f64f8133611f7637a1e7eb86f7","tags":[]}] +[11:10:21.958] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:10:22.018] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"AOL: A gigante da internet dos anos 90 pode ser vendida por uma fração do seu valor https://tugatech.com.pt/t72211-aol-a-gigante-da-internet-dos-anos-90-pode-ser-vendida-por-uma-fracao-do-seu-valor","created_at":1759417820,"id":"0485b85f51713fdfe36de7791a3052a60e2c8ede9ff6c50d09b4a08658da2287","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"adabb951659625de6105a36b94312328a2545a236cf930aabcb948ac8594f7a94d9acc5799df2815946abfccd77ed49295b255753d40346cd740affb2110d478","tags":[]}] +[11:10:24.846] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Microsoft Defender está a gerar falsos alertas de BIOS em equipamentos Dell https://tugatech.com.pt/t72210-microsoft-defender-esta-a-gerar-falsos-alertas-de-bios-em-equipamentos-dell","created_at":1759417823,"id":"3bfd6e2e68af828274d6b5dfe2334b0e7e60608ee7fe3572ddeb429b9e86367e","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"3bbe0ecd9be01ec1c7424c1fbe4764e85f67b97dfa1aebf67eefea89ec65e3a6c01ed7d884e94690f1357f5ad66f7459b990f2a498951ba32c36a55426f8256d","tags":[]}] +[11:10:25.356] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"No problem until your comment made me overthink it and then I struggled for a minute until I stopped overthinking it. 😂","created_at":1759417825,"id":"74ef91c4c0e6b94766b9e673d90a7e58dadb889b653acb65a059985b33f473ef","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"5b6dc6a36db230841764178721f82da8294823e7c3b69a364b43eb662857cafbd05e78a47fae0f184b1dbb3c48765440d6647a99795add72ec6cf8d48ef609a8","tags":[["alt","A short note: No problem until your comment made me overthink it..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://relay.damus.io/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","736f30b39f475d8907ea4b3bc4b6644d34d6ad2fa139cd0b1ec0532e3be0b0e7","wss://relay.primal.net/","","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["e","bc6e8a14a0f06cab92212dc444a37f6439fbadd926af6f609525adfb741b1643","wss://relay.damus.io/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","96b2c783ac6c6895009c65fed763363925c11088aca168468c88cd5f65f597cb","wss://relay.primal.net/","","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["e","82c4c0651699eacfc6c952d497f2f057b02e23494e82ce4934b8404779ba5484","wss://relay.damus.io/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","wss://nos.lol/"]]}] +[11:10:34.003] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ημέÏα και νÏχτα, φως και σκοτάδι \nhttps://i.nostr.build/nXgxhNytSFAv7qD7.jpg\n#sketchGAR #kidstr #sketch #kidsart #nostrart #nostrkid","created_at":1759417833,"id":"b4dd3bea8741f67d1367c0897a3f807ef0b6cdfe96c357f91a6a6af95e567293","kind":1,"pubkey":"9624cd2021bdeaa86a4443bbcfe1aa688bb775d63c0f54a057de631353882db0","sig":"b160943f6647e7e30368fd8a05f6834241a99405f90f60039f2c9825993fc47d2c0604b151982837131ad95950b2293d7057dad8692937db8076b7a12399469f","tags":[["alt","A short note: ημέÏα και νÏχτα, φως και σκοτάδι \nhttps://i.nostr...."],["t","sketchGAR"],["t","sketchgar"],["t","kidstr"],["t","sketch"],["t","kidsart"],["t","nostrart"],["t","nostrkid"],["r","https://i.nostr.build/nXgxhNytSFAv7qD7.jpg"]]}] +[11:10:36.056] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I have to give it a listen right?\n\n\nnostr:nevent1qqsfgdknfqshv8838qxftcgc449ap4et936gvs6rl2ksjl6rq77vsqspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg8de5s9trchmxfj0kzpu3vzlxcqvvc6csqssph05qsw7r2qq78xmgpsgqqqqqqs23hd5q","created_at":1759417756,"id":"bee0f3c6f9899447ab82e8bd278c697b3be4718f6800e519ad5e24182816fced","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"34e1af0d7d4e5b51f04caa1f8dd1211518d10c74e20674eaef6f3d5fa8cd5dc4fdd342356166d9f86976c86f210e5f27b192cdb7745ebfd6e5ff465ef010244f","tags":[["alt","A short note: I have to give it a listen right?\n\n\nnostr:nevent1q..."],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","wss://relay.damus.io/"],["q","9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","wss://relay.damus.io/","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["zap","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","wss://relay.damus.io/","0.9"],["zap","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/","0.1"]]}] +[11:10:37.600] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"â€$1.7 Million Crypto Heist Highlights Critical Need for Seed Phrase Security\n\nA former diver in Singapore has been convicted of stealing $1.7 million in cryptocurrency by photographing a victim's 24-word seed phrase. The incident underscores the vulnerability of even hardware wallets if the master key is not properly protected.\n\nSeed phrases are the ultimate key to crypto wallets and, once compromised, grant irreversible access to funds. Industry experts emphasize that user behavior and secure storage practices are paramount, as human error remains a significant security risk. Best practices include storing seed phrases in highly secure physical locations, using durable materials, and considering multi-signature wallets.\n\nhttps://cryptovka.ru/en/news/5374/stolen-seed-phrase-stolen-fortune-why-your-crypto-s-master-key-needs-ultimate-protection","created_at":1759417837,"id":"e472bf6e42832c222962cdd50c8764f771dc0215c2cf8432bdc5e2c0a5b2f219","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"51963384f8e810a08e82d45b528f87d008222f572210a59a06c464dc9cec6ed0e06935ff7f66c427d2ab0e3feea834206b47c80b6409316aa1ba94d736063d56","tags":[]}] +[11:10:42.141] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:10:42.252] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:10:42.313] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:10:42.373] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:10:42.434] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:10:45.977] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Ducati Bikers 🇮🇹 \nhttps://images2.imgbox.com/b1/e2/9HdKilcZ_o.jpg \n#Nostr #Girls #Bikes and #Motorbikes 🫦 🚴â€â™€ï¸ ðŸï¸ 🛵 🚲 🛴\n#motorbike ","created_at":1759417845,"id":"6c36a10cc52c73eb1d1313f067ae327da4e900e537144a539ad2b1d66d3ede21","kind":1,"pubkey":"4f983dcb86b40d31427cc1f43388be7bae4312c9b73d1443d935a32dd6acbeb0","sig":"222ac8eb4538e8a583ff954ad3145163bfdf2dce13d6e83306c02d581f1af9ae8ebc94671f8dc87eec6210304f0dc2b1732de6a803f85fba2032a7c5ded6634a","tags":[]}] +[11:10:46.825] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Snow already? Or old picture? ","created_at":1759417846,"id":"1f1c4d2432ab9133c4947e37c2a374dc8bcfb8d073c59ef057f8ce02f4fd3b22","kind":1,"pubkey":"04387dde301d4e00dded8328bdb1043bca5d978daa7c11a0fc267e4f4fec7605","sig":"ee6a0ff1211accd3dc589bd652cbb302787ab0a9873f91265614f440cf1b8c34c6c49b54f895accb8ab2750ce5b7741d726edf106b8402c82f528c5470bd8fed","tags":[["e","27063e6cf536c6c6c0cdeebde74d454e11e79e4951aa049120b3e0b0416e6eba","","root"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"]]}] +[11:10:47.439] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#thighgap \nhttps://images2.imgbox.com/93/12/tZwpCIwb_o.jpg \n#BeautifulLifeVibes ✨😊","created_at":1759417846,"id":"1854f400f2fbe656d2cd0e98babded3e1c9492075fe3df30586ce5e554fecb2a","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6e6eca57226f91100f8f53a89ae913bfa492a92ecbe7383e51fde7fa966999e0b337a61f4798726116e3b27c8622f7fbd801d57df806e8b15e29e27587769583","tags":[]}] +[11:10:48.098] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Palestinianism at work\nhttps://www.cnn.com/world/live-news/manchester-uk-synagogue-attack-10-02-25","created_at":1759417847,"id":"d0457cb9d015cd6a5c70d57e78b41084e439816fead27cfc43cfd29f0822b45a","kind":1,"pubkey":"778ee1e43dab8547b580f82e9cfcf1aa19151d481cb28a61cacea390405322b7","sig":"953d62ee89105bc6705611534d6c8cb6606e6c784a406d80c89809fb5f527d3e2a14ba3d3374d8574a9b434ba95754d981fc8a082e508d97bc0885b5ba05d36b","tags":[]}] +[11:10:49.709] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Its not Matthew. Do you need some brain?","created_at":1759417839,"id":"bc1106473015e973009be0600c22c0c665e7827047880a3751212a4f7a840558","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"03b7d59bae9c713a8a178c3e100c2256f078dbfb865af19829c80746e4b07ddc8cb9698211eddcd7b47a612fa404f8cea12eded8196285c0daacfd57b9941974","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://nos.lol/","root"],["e","9a7afd64edc393091aa2d63203734b06b1955fd1f0a8f9b475fb5c9b7741bc90","wss://relay.snort.social/","reply","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"]]}] +[11:10:51.209] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:10:51.362] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Palestinianism at work\nhttps://www.cnn.com/world/live-news/manchester-uk-synagogue-attack-10-02-25","created_at":1759417847,"id":"d0457cb9d015cd6a5c70d57e78b41084e439816fead27cfc43cfd29f0822b45a","kind":1,"pubkey":"778ee1e43dab8547b580f82e9cfcf1aa19151d481cb28a61cacea390405322b7","sig":"953d62ee89105bc6705611534d6c8cb6606e6c784a406d80c89809fb5f527d3e2a14ba3d3374d8574a9b434ba95754d981fc8a082e508d97bc0885b5ba05d36b","tags":[]}] +[11:10:51.422] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#thighgap \nhttps://images2.imgbox.com/93/12/tZwpCIwb_o.jpg \n#BeautifulLifeVibes ✨😊","created_at":1759417846,"id":"1854f400f2fbe656d2cd0e98babded3e1c9492075fe3df30586ce5e554fecb2a","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"6e6eca57226f91100f8f53a89ae913bfa492a92ecbe7383e51fde7fa966999e0b337a61f4798726116e3b27c8622f7fbd801d57df806e8b15e29e27587769583","tags":[]}] +[11:10:51.483] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Snow already? Or old picture? ","created_at":1759417846,"id":"1f1c4d2432ab9133c4947e37c2a374dc8bcfb8d073c59ef057f8ce02f4fd3b22","kind":1,"pubkey":"04387dde301d4e00dded8328bdb1043bca5d978daa7c11a0fc267e4f4fec7605","sig":"ee6a0ff1211accd3dc589bd652cbb302787ab0a9873f91265614f440cf1b8c34c6c49b54f895accb8ab2750ce5b7741d726edf106b8402c82f528c5470bd8fed","tags":[["e","27063e6cf536c6c6c0cdeebde74d454e11e79e4951aa049120b3e0b0416e6eba","","root"],["p","0018b7ee33fb253843639c62e292fec700a69a93b08ee374c5bda971c9b39564"]]}] +[11:10:51.544] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Ducati Bikers 🇮🇹 \nhttps://images2.imgbox.com/b1/e2/9HdKilcZ_o.jpg \n#Nostr #Girls #Bikes and #Motorbikes 🫦 🚴â€â™€ï¸ ðŸï¸ 🛵 🚲 🛴\n#motorbike ","created_at":1759417845,"id":"6c36a10cc52c73eb1d1313f067ae327da4e900e537144a539ad2b1d66d3ede21","kind":1,"pubkey":"4f983dcb86b40d31427cc1f43388be7bae4312c9b73d1443d935a32dd6acbeb0","sig":"222ac8eb4538e8a583ff954ad3145163bfdf2dce13d6e83306c02d581f1af9ae8ebc94671f8dc87eec6210304f0dc2b1732de6a803f85fba2032a7c5ded6634a","tags":[]}] +[11:10:51.604] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Its not Matthew. Do you need some brain?","created_at":1759417839,"id":"bc1106473015e973009be0600c22c0c665e7827047880a3751212a4f7a840558","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"03b7d59bae9c713a8a178c3e100c2256f078dbfb865af19829c80746e4b07ddc8cb9698211eddcd7b47a612fa404f8cea12eded8196285c0daacfd57b9941974","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://nos.lol/","root"],["e","9a7afd64edc393091aa2d63203734b06b1955fd1f0a8f9b475fb5c9b7741bc90","wss://relay.snort.social/","reply","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"]]}] +[11:10:51.665] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"â€$1.7 Million Crypto Heist Highlights Critical Need for Seed Phrase Security\n\nA former diver in Singapore has been convicted of stealing $1.7 million in cryptocurrency by photographing a victim's 24-word seed phrase. The incident underscores the vulnerability of even hardware wallets if the master key is not properly protected.\n\nSeed phrases are the ultimate key to crypto wallets and, once compromised, grant irreversible access to funds. Industry experts emphasize that user behavior and secure storage practices are paramount, as human error remains a significant security risk. Best practices include storing seed phrases in highly secure physical locations, using durable materials, and considering multi-signature wallets.\n\nhttps://cryptovka.ru/en/news/5374/stolen-seed-phrase-stolen-fortune-why-your-crypto-s-master-key-needs-ultimate-protection","created_at":1759417837,"id":"e472bf6e42832c222962cdd50c8764f771dc0215c2cf8432bdc5e2c0a5b2f219","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"51963384f8e810a08e82d45b528f87d008222f572210a59a06c464dc9cec6ed0e06935ff7f66c427d2ab0e3feea834206b47c80b6409316aa1ba94d736063d56","tags":[]}] +[11:10:51.725] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ημέÏα και νÏχτα, φως και σκοτάδι \nhttps://i.nostr.build/nXgxhNytSFAv7qD7.jpg\n#sketchGAR #kidstr #sketch #kidsart #nostrart #nostrkid","created_at":1759417833,"id":"b4dd3bea8741f67d1367c0897a3f807ef0b6cdfe96c357f91a6a6af95e567293","kind":1,"pubkey":"9624cd2021bdeaa86a4443bbcfe1aa688bb775d63c0f54a057de631353882db0","sig":"b160943f6647e7e30368fd8a05f6834241a99405f90f60039f2c9825993fc47d2c0604b151982837131ad95950b2293d7057dad8692937db8076b7a12399469f","tags":[["alt","A short note: ημέÏα και νÏχτα, φως και σκοτάδι \nhttps://i.nostr...."],["t","sketchGAR"],["t","sketchgar"],["t","kidstr"],["t","sketch"],["t","kidsart"],["t","nostrart"],["t","nostrkid"],["r","https://i.nostr.build/nXgxhNytSFAv7qD7.jpg"]]}] +[11:10:51.786] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"No problem until your comment made me overthink it and then I struggled for a minute until I stopped overthinking it. 😂","created_at":1759417825,"id":"74ef91c4c0e6b94766b9e673d90a7e58dadb889b653acb65a059985b33f473ef","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"5b6dc6a36db230841764178721f82da8294823e7c3b69a364b43eb662857cafbd05e78a47fae0f184b1dbb3c48765440d6647a99795add72ec6cf8d48ef609a8","tags":[["alt","A short note: No problem until your comment made me overthink it..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://relay.damus.io/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","736f30b39f475d8907ea4b3bc4b6644d34d6ad2fa139cd0b1ec0532e3be0b0e7","wss://relay.primal.net/","","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["e","bc6e8a14a0f06cab92212dc444a37f6439fbadd926af6f609525adfb741b1643","wss://relay.damus.io/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","96b2c783ac6c6895009c65fed763363925c11088aca168468c88cd5f65f597cb","wss://relay.primal.net/","","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249"],["e","82c4c0651699eacfc6c952d497f2f057b02e23494e82ce4934b8404779ba5484","wss://relay.damus.io/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","wss://nos.lol/"]]}] +[11:10:51.847] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Microsoft Defender está a gerar falsos alertas de BIOS em equipamentos Dell https://tugatech.com.pt/t72210-microsoft-defender-esta-a-gerar-falsos-alertas-de-bios-em-equipamentos-dell","created_at":1759417823,"id":"3bfd6e2e68af828274d6b5dfe2334b0e7e60608ee7fe3572ddeb429b9e86367e","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"3bbe0ecd9be01ec1c7424c1fbe4764e85f67b97dfa1aebf67eefea89ec65e3a6c01ed7d884e94690f1357f5ad66f7459b990f2a498951ba32c36a55426f8256d","tags":[]}] +[11:10:51.907] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"AOL: A gigante da internet dos anos 90 pode ser vendida por uma fração do seu valor https://tugatech.com.pt/t72211-aol-a-gigante-da-internet-dos-anos-90-pode-ser-vendida-por-uma-fracao-do-seu-valor","created_at":1759417820,"id":"0485b85f51713fdfe36de7791a3052a60e2c8ede9ff6c50d09b4a08658da2287","kind":1,"pubkey":"6b2274f9d11af727f92600aa2e6a255261871c9a9b00dcf47c9641bbe06e4dba","sig":"adabb951659625de6105a36b94312328a2545a236cf930aabcb948ac8594f7a94d9acc5799df2815946abfccd77ed49295b255753d40346cd740affb2110d478","tags":[]}] +[11:10:51.968] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:10:54.823] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Cointelegraph Examines Potential for Further Gains in BNB, Solana, and Dogecoin This October\n\n#BNB #Solana #DOGE #Cointelegraph","created_at":1759417854,"id":"87fb41ffbb39f70124ebc081eca083baef90fe8dcbc866ca6b3a2dd78fec8023","kind":1,"pubkey":"33e0b2e38fef5ad837e442aa8013bcf8efbddf56dcc6a36d2e9853bb7748188a","sig":"4485339372c4a655915428655aeed679a18724d3fc4e210f20f10c0140bcb4009ed26435cf4e054a225ee09620d34989530abb172fc30706cb60c321c3265ffe","tags":[]}] +[11:10:57.319] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I see. I like your metaphoric language though. Reminds me of someone I knew.\n\nBut no, I haven't spent yet, I did create an empty wallet though..","created_at":1759417854,"id":"2a2f13b6262891b226644fcffccd646a6657729efff26cbcba836d1292f9c047","kind":1,"pubkey":"3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","sig":"eed81afc2212e1e4b00dbbf437b4c837142941fbe9ec52c560e0ce64aa46bde8a19df0d794b2b8e6906fc7998f2eb59b2d620e5a7f3692c4036660e5db49f4e0","tags":[["alt","A short note: I see. I like your metaphoric language though. Rem..."],["e","a6a97cdeb0848bd848dbe8d010b1c78f2ab445a262cad08ae4eac596321fb692","wss://relay.damus.io/","root","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["e","93ea5f7767996292685c7a856a2d42dc47044554994a21c17ffa390c22d17017","wss://relay.primal.net/","","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a"],["e","637021bc325474261a1f2eb36de190518b3e473bf10ea931c5d905828bbcdc80","wss://relay.damus.io/","reply","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf"],["p","3e4a9d385ff2db9b79dbbf888a9c6b6097bf8852e8263fc183458ac07880df9a","ws://bostr.bitcointxoko.com/"],["p","5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","wss://relay.primal.net/"]]}] +[11:10:59.925] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://nostr.download/49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06.jpg https://nostr.download/a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892.jpg https://nostr.download/7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7.jpg","created_at":1759417858,"id":"66208ae421ec0670c4eda91e527ba58a53fc46c8ad304d18f9cfba0af1481c50","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"0ea3a84405a8760c5d1bbebcd4172a995b6fd8b6901806db0f7d8de08bd24d8ddaca12bb0488f952d5b1c744c58c4d435f2d14ab16c183a606f3885e71338e37","tags":[["alt","A short note: https://nostr.download/49af98f825286e4c8a9c0bdf26c..."],["r","https://nostr.download/a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892.jpg"],["r","https://nostr.download/49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06.jpg"],["r","https://nostr.download/7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7.jpg"],["imeta","url https://nostr.download/49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06.jpg","x 49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06","size 63530","m image/jpeg","dim 720x900","blurhash _QJ86E~pO@?br?MxyDx]RjVtoLNGM{RjR,Rjn$M{a}oLof-p%Mg2WBaeofozt7WBoLaeofWBjZWVofRjayofofWBoLRjWBWBj[WBayRjofofofoLt7ofozWBo1axWWayoL","ox 49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06","alt "],["imeta","url https://nostr.download/a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892.jpg","x a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892","size 71914","m image/jpeg","dim 564x1251","blurhash [IJ*P6yE%1IU_MtR-;IUOYnNIBV@^+ocE1xuyCaytRoLSdVsnOoeogM{R*x]MxbHofj]bvjZaKWB","ox a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892","alt "],["imeta","url https://nostr.download/7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7.jpg","x 7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7","size 83783","m image/jpeg","dim 720x900","blurhash _OKKZq_3KP.8VsRk-p~p%LbbWCR6WBtRY5X7nNIBM{ofW:R%RjRPs-o}R*nPx]aLVtoztkozRknijZX7ayofbbj[t7bHWoofsCV[S1tRofWBWVo1n%WBV@V@ayR*kWt6r?","ox 7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7","alt "]]}] +[11:11:06.618] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"@aljazeeraglobal\n\nhttps://t.me/aljazeeraglobal\n\nSource: [Al Jazeera](https://t.me/aljazeeraglobal/120845)","created_at":1759417866,"id":"d328fdbc17aaa4962ccd0368f807c2bb0d747c6ad0cd60fca323c556d69136b5","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"1ec65141d8f9f15a88384af3b91dbfebae71852e0dd759e5b1a802192c70861f76474a3c75404708aab41f42beb93557525e3e061c18a6ef1884d45dd4cc2831","tags":[]}] +[11:11:08.560] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:41 IST\n\nBlock Number: 917389\nFee Rate: ₹42\nTime to mine: 00:00","created_at":1759417865,"id":"3fdbe3be7bfcf1bf46820b4430173786f33dc8f70df01b6187aa8f42c2d050d7","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"9319daf52c54b41f740ac349d51e1bf20c12535a7fd8c7ce5db882a1b4488cc952ec43d684aac9b7fe2d10946f6eebda8cdf6d8380263c720471eae65aad636e","tags":[]}] +[11:11:09.953] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917389\nWeight: 3993795\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c.png","created_at":1759417869,"id":"61a2fe5796295ca40b69e91c60f83db9ef34b9979e270e816c9a9f9030d966f3","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"bd5d343978a7232a6ebb29560dd9709c7b034d8e576fe7ae548928ac291016c6663e4dbbda7015dadf5a531fe99993eb45d06d6b484d9ddfd342938886b838b2","tags":[]}] +[11:11:10.752] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:11:12.140] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:11:12.251] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:11:12.312] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:11:12.372] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:11:12.433] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:11:12.493] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:11:12.735] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:39 @ 917,389","created_at":1759417872,"id":"907991cf9371bb3b20d072c196968157c8e7dc111728e576859e375993757728","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"cd6098c63db68934c5626d35b62c73a0f9538c927c3442da0d6cf8fb03cdf3a5556b01126eed40022d7209726385e73ad88e68afa96e1a13252e8e00536fdbc7","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:11:15.008] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do you think there is restitution in the afterlife?\n\nevery landscaper that ever tortured me unwittingly with their thoughtlessness is just like: sorry","created_at":1759417874,"id":"c812178980cac1a1b7c5c3709a8f4ed5f6e802da4a4be5224868e686a2575d48","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"cb45c02b064bb59d7805639139e7dc0441b5fd5a825b864f401a0490ccfa225cdced0c1aa4ebec605134cf54733d0ec13863b5383cfdb9b75254d552ac9145d4","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","d42b5d5980d05fbf29c3f41595868979825043888f81c51225f4de7326d0e0eb","","reply"]]}] +[11:11:15.622] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"lol I bought cheap back in the day, so yes, pretty sure I can think just fine.\n\nPerhaps you are grumpy because you didn't think and missed the boat?","created_at":1759417875,"id":"5646b8978d1c721eeaaf0f3a8458c36d9ea3314f5a5a1142d755f64f42f8d19e","kind":1,"pubkey":"24c781937caaf5df1e6a2481fb56d169ab49c40f3e35ae25218c53e957240bd9","sig":"758735f7918641e8a1ee463afe78e883827158cc668985daae97f5fcb02a7eda9aaf10ffe77876be7222c3ef6bb32d5071d2e146c484ef8e1633a5cd7edf144e","tags":[["e","7a39934f63e04c0da697c19aeacf2261f9d28c88e6c9523f6979afc1fae7d4b0","wss://relay.snort.social/","root","bdf02ee67066fdeba255e1ac77d67ad95048ded50eb885a01cab39156e4282df"],["e","1218cfc7807204dc4babf8ad21af226db5efc7b88b5c83842e039c6e697f61fe","wss://relay.snort.social/","reply","bdf02ee67066fdeba255e1ac77d67ad95048ded50eb885a01cab39156e4282df"],["p","bdf02ee67066fdeba255e1ac77d67ad95048ded50eb885a01cab39156e4282df"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:11:19.778] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I do, I always do. And you?","created_at":1759417879,"id":"0f447bfaf2966b2323bbb28b1179d8ce3f3b1af3c22c17a5b4c63faa213b3351","kind":1,"pubkey":"f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","sig":"cae43ddd2e19903bbcf3d2e6cc123acbdf09d46e6c80fc3a551ebf6efefe6dec499bd8571cd82b8e9e6ed71b8b98e322ff243b22e2b6f7570932a7a8c2f410fc","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","","mention"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["p","77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","","mention"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","","root"],["e","bc1106473015e973009be0600c22c0c665e7827047880a3751212a4f7a840558","","reply"]]}] +[11:11:20.881] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I don't know but I misunderstand many new memes. ","created_at":1759417880,"id":"2b24fe66df1f471e6057e7a4df79308569556f5c70deedeab383d8ebd1368669","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"0178b9858f99fe3de691d165facede0a4b0de8f244bba36356fd3e30b517b798883e0ecb8bdf2c239e1b8b62a32607c54dfe0b68a3117d4c6357ea456ae3d168","tags":[["alt","A short note: I don't know but I misunderstand many new memes. "],["e","b5b61a8730c7d846ccb8f5e6fac5258beacfeab7b37e8baa0402698b6b3615ce","wss://relay.damus.io/","root","d6b095f3947562642306edbf0c22c22b7b7855499088873df353506b5775d03d"],["p","d6b095f3947562642306edbf0c22c22b7b7855499088873df353506b5775d03d","wss://relay.damus.io/"]]}] +[11:11:20.941] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"Differently Abled.\" 🤣\n\n💜ðŸ•","created_at":1759417881,"id":"f8259ec1ee943dca750b3b1e501bbeef0e10e98656fcd61dde6634c2f54973c3","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"43c43e1d899db850e4655d3392f8ae5186f893cc18a79075f2ea1b04a561efd78b6983c54a5861e06b4004e2ba613edd41763239e0fbf0d0363fc42b1d6c409d","tags":[["alt","A short note: \"Differently Abled.\" 🤣\n\n💜ðŸ•"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://relay.damus.io/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","wss://nos.lol/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:11:21.113] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:11:21.265] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"Differently Abled.\" 🤣\n\n💜ðŸ•","created_at":1759417881,"id":"f8259ec1ee943dca750b3b1e501bbeef0e10e98656fcd61dde6634c2f54973c3","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"43c43e1d899db850e4655d3392f8ae5186f893cc18a79075f2ea1b04a561efd78b6983c54a5861e06b4004e2ba613edd41763239e0fbf0d0363fc42b1d6c409d","tags":[["alt","A short note: \"Differently Abled.\" 🤣\n\n💜ðŸ•"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://relay.damus.io/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","wss://nos.lol/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:11:21.326] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I don't know but I misunderstand many new memes. ","created_at":1759417880,"id":"2b24fe66df1f471e6057e7a4df79308569556f5c70deedeab383d8ebd1368669","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"0178b9858f99fe3de691d165facede0a4b0de8f244bba36356fd3e30b517b798883e0ecb8bdf2c239e1b8b62a32607c54dfe0b68a3117d4c6357ea456ae3d168","tags":[["alt","A short note: I don't know but I misunderstand many new memes. "],["e","b5b61a8730c7d846ccb8f5e6fac5258beacfeab7b37e8baa0402698b6b3615ce","wss://relay.damus.io/","root","d6b095f3947562642306edbf0c22c22b7b7855499088873df353506b5775d03d"],["p","d6b095f3947562642306edbf0c22c22b7b7855499088873df353506b5775d03d","wss://relay.damus.io/"]]}] +[11:11:21.387] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I do, I always do. And you?","created_at":1759417879,"id":"0f447bfaf2966b2323bbb28b1179d8ce3f3b1af3c22c17a5b4c63faa213b3351","kind":1,"pubkey":"f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","sig":"cae43ddd2e19903bbcf3d2e6cc123acbdf09d46e6c80fc3a551ebf6efefe6dec499bd8571cd82b8e9e6ed71b8b98e322ff243b22e2b6f7570932a7a8c2f410fc","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98","","mention"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8","","mention"],["p","77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","","mention"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","","root"],["e","bc1106473015e973009be0600c22c0c665e7827047880a3751212a4f7a840558","","reply"]]}] +[11:11:21.447] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"lol I bought cheap back in the day, so yes, pretty sure I can think just fine.\n\nPerhaps you are grumpy because you didn't think and missed the boat?","created_at":1759417875,"id":"5646b8978d1c721eeaaf0f3a8458c36d9ea3314f5a5a1142d755f64f42f8d19e","kind":1,"pubkey":"24c781937caaf5df1e6a2481fb56d169ab49c40f3e35ae25218c53e957240bd9","sig":"758735f7918641e8a1ee463afe78e883827158cc668985daae97f5fcb02a7eda9aaf10ffe77876be7222c3ef6bb32d5071d2e146c484ef8e1633a5cd7edf144e","tags":[["e","7a39934f63e04c0da697c19aeacf2261f9d28c88e6c9523f6979afc1fae7d4b0","wss://relay.snort.social/","root","bdf02ee67066fdeba255e1ac77d67ad95048ded50eb885a01cab39156e4282df"],["e","1218cfc7807204dc4babf8ad21af226db5efc7b88b5c83842e039c6e697f61fe","wss://relay.snort.social/","reply","bdf02ee67066fdeba255e1ac77d67ad95048ded50eb885a01cab39156e4282df"],["p","bdf02ee67066fdeba255e1ac77d67ad95048ded50eb885a01cab39156e4282df"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[11:11:21.508] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"do you think there is restitution in the afterlife?\n\nevery landscaper that ever tortured me unwittingly with their thoughtlessness is just like: sorry","created_at":1759417874,"id":"c812178980cac1a1b7c5c3709a8f4ed5f6e802da4a4be5224868e686a2575d48","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"cb45c02b064bb59d7805639139e7dc0441b5fd5a825b864f401a0490ccfa225cdced0c1aa4ebec605134cf54733d0ec13863b5383cfdb9b75254d552ac9145d4","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","d42b5d5980d05fbf29c3f41595868979825043888f81c51225f4de7326d0e0eb","","reply"]]}] +[11:11:21.568] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"08:39 @ 917,389","created_at":1759417872,"id":"907991cf9371bb3b20d072c196968157c8e7dc111728e576859e375993757728","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"cd6098c63db68934c5626d35b62c73a0f9538c927c3442da0d6cf8fb03cdf3a5556b01126eed40022d7209726385e73ad88e68afa96e1a13252e8e00536fdbc7","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[11:11:21.629] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917389\nWeight: 3993795\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c.png","created_at":1759417869,"id":"61a2fe5796295ca40b69e91c60f83db9ef34b9979e270e816c9a9f9030d966f3","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"bd5d343978a7232a6ebb29560dd9709c7b034d8e576fe7ae548928ac291016c6663e4dbbda7015dadf5a531fe99993eb45d06d6b484d9ddfd342938886b838b2","tags":[]}] +[11:11:21.690] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"@aljazeeraglobal\n\nhttps://t.me/aljazeeraglobal\n\nSource: [Al Jazeera](https://t.me/aljazeeraglobal/120845)","created_at":1759417866,"id":"d328fdbc17aaa4962ccd0368f807c2bb0d747c6ad0cd60fca323c556d69136b5","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"1ec65141d8f9f15a88384af3b91dbfebae71852e0dd759e5b1a802192c70861f76474a3c75404708aab41f42beb93557525e3e061c18a6ef1884d45dd4cc2831","tags":[]}] +[11:11:21.750] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Bitcoin Block Update\nThu, Oct 02, 2025 20:41 IST\n\nBlock Number: 917389\nFee Rate: ₹42\nTime to mine: 00:00","created_at":1759417865,"id":"3fdbe3be7bfcf1bf46820b4430173786f33dc8f70df01b6187aa8f42c2d050d7","kind":1,"pubkey":"c4dd2587e2e7eafc295f1d44b3cf9e117231db8cb1b675a9e6fb83e99878d08d","sig":"9319daf52c54b41f740ac349d51e1bf20c12535a7fd8c7ce5db882a1b4488cc952ec43d684aac9b7fe2d10946f6eebda8cdf6d8380263c720471eae65aad636e","tags":[]}] +[11:11:21.810] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://nostr.download/49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06.jpg https://nostr.download/a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892.jpg https://nostr.download/7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7.jpg","created_at":1759417858,"id":"66208ae421ec0670c4eda91e527ba58a53fc46c8ad304d18f9cfba0af1481c50","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"0ea3a84405a8760c5d1bbebcd4172a995b6fd8b6901806db0f7d8de08bd24d8ddaca12bb0488f952d5b1c744c58c4d435f2d14ab16c183a606f3885e71338e37","tags":[["alt","A short note: https://nostr.download/49af98f825286e4c8a9c0bdf26c..."],["r","https://nostr.download/a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892.jpg"],["r","https://nostr.download/49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06.jpg"],["r","https://nostr.download/7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7.jpg"],["imeta","url https://nostr.download/49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06.jpg","x 49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06","size 63530","m image/jpeg","dim 720x900","blurhash _QJ86E~pO@?br?MxyDx]RjVtoLNGM{RjR,Rjn$M{a}oLof-p%Mg2WBaeofozt7WBoLaeofWBjZWVofRjayofofWBoLRjWBWBj[WBayRjofofofoLt7ofozWBo1axWWayoL","ox 49af98f825286e4c8a9c0bdf26cf5c7bc3aba2719c209fdd2a0a382dc885dd06","alt "],["imeta","url https://nostr.download/a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892.jpg","x a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892","size 71914","m image/jpeg","dim 564x1251","blurhash [IJ*P6yE%1IU_MtR-;IUOYnNIBV@^+ocE1xuyCaytRoLSdVsnOoeogM{R*x]MxbHofj]bvjZaKWB","ox a1bd697cc574e239746a9d6bbe19678e2ab34e74b573a03ac5f9e1bc66255892","alt "],["imeta","url https://nostr.download/7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7.jpg","x 7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7","size 83783","m image/jpeg","dim 720x900","blurhash _OKKZq_3KP.8VsRk-p~p%LbbWCR6WBtRY5X7nNIBM{ofW:R%RjRPs-o}R*nPx]aLVtoztkozRknijZX7ayofbbj[t7bHWoofsCV[S1tRofWBWVo1n%WBV@V@ayR*kWt6r?","ox 7db615ad6b6ec00e5ad18ceed88d182f7f6051a950317253519240aae13da2d7","alt "]]}] +[11:11:21.871] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:11:24.145] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Mark Gurman on Apple shifting resources away from a lighter Vision Pro:\n\n\"The company had been preparing a cheaper, lighter variant of its headset — code-named N100 — for release in 2027. But Apple announced internally last week that it’s moving staff from that project to accelerate work on glasses, according to people with knowledge of the matter.\"\n\nThey should do both. I’ve been skeptical of Vision Pro all along, but it does need a “Vision Air†hardware update, unless they plan to abandon it. See also: Casey Neistat’s latest video. https://www.bloomberg.com/news/articles/2025-10-01/apple-shelves-vision-headset-revamp-to-prioritize-meta-like-ai-smart-glasses?embedded-checkout=true https://youtu.be/vRKayRN0QhU?si=mpvOFB_EGYxlAdRD","created_at":1759417882,"id":"fda34c3cdc87272adecb9799a10b5a2eedee099ce274037a69edc8368c8729cc","kind":1,"pubkey":"ee6aa0bdaaa8778c0ebee4d2aec6ec52c7bb17e3d8f5446615644d40c310a906","sig":"6b2b77858e0042a19c9dece929e9255bf7b33a99d34dd96ac2b72e29033fe60fc969c5117dd6141002311e16bd503c3e7fe258d666d79f5c259946a77199dba7","tags":[]}] +[11:11:25.998] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Which essential oils would you include if up to you? Would they just be for scent or serve a health purpose?","created_at":1759417885,"id":"3335c38d5ebd5fbe4c53ecd8af3ef9903a91e1fb19f26612d1385013dceb1585","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"838e239ce19cf625c50c93baef072277a58c47369cce234e1ebaef820d7de1b7ea64778b0e12ea6e5d11773dc519e1466ebe45fc8ecf53792ba4d0ca5d7ee313","tags":[["e","565b19242d6ff350283cd43cc481f435ffe5f3b4f71d7ea36f5baa5ba8a941ba","","root","356875ffd729b06eeb4c1d7a70a1f750045d067774d21c0faffe4af2bf96a2e8"],["e","7f78b814039e1f859a3c8ff6b53959a63b277c70b3646dad7597f94a29c52ce1","wss://bitcoiner.social","reply"],["p","356875ffd729b06eeb4c1d7a70a1f750045d067774d21c0faffe4af2bf96a2e8","","mention"]]}] +[11:11:33.422] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yeah that wasn't bad at all","created_at":1759417893,"id":"4a0a16006341734816a167a382e882f24ad8fcb045a959f5b77ff786670800c1","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"9ff278250c45a0e7c5ae8ea34806f607f10859f12a8384810fd2d8865b21c6cd4fe6feb20c04c84a114debca16eb904d267b8b0e2678acf6c09fa042c2f9e493","tags":[["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://nostr.wine/","root"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","","reply"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"]]}] +[11:11:35.031] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"i doubt it\n\ni really do","created_at":1759417894,"id":"e947b0c2b90dd6df54b4ecbe83838210dce8d92004562acff5b3ac75f653834e","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"ded893a800bacae59ae158800502b2b8d01f49f96f6e24534e8223cfef700579d68afb07db72edf7f19d26ce615f1a58d26d6e1978aafcec7fe68b9c0e593d5b","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","c812178980cac1a1b7c5c3709a8f4ed5f6e802da4a4be5224868e686a2575d48","","reply"]]}] +[11:11:39.185] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"11:11","created_at":1759417898,"id":"c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"bcebf4045a738b8412e1c857a1ee78504724665a8bc3df206ba0d3fe8c12546595917fdae5746969e897638131cd15b1a44c50601679090bf34fa68378e54af3","tags":[]}] +[11:11:42.174] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:11:42.285] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:11:42.345] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:11:42.406] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:11:42.466] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:11:42.527] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:11:43.412] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!\nnostr:nevent1qqsqw70jax9ngzanfw9akl4fqq84tylw4srwx8nqca8629vq92s9enqpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg8ga5me33hla0l6ppgp4su7yutx9073vrmg372vghtf9krk0hf5tgpsgqqqqqqsf6mnlh","created_at":1759417896,"id":"4b196d2d9ce5a5721aa2dcf8eb59e3a46ec3225e79a4417e07b32a5a957cc630","kind":1,"pubkey":"3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","sig":"22a01c6dee2f8c049cf3b3688246f798fb3b336f88455d969ec4d12a6d9ddc57b3d5ab535298abbf1fc462147c0aaaab399ab828d307e0ba12c4c4e5b0aadc5c","tags":[["alt","A short note: GM!\nnostr:nevent1qqsqw70jax9ngzanfw9akl4fqq84tylw4..."],["p","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","wss://relay.damus.io/"],["q","0779f2e98b340bb34b8bdb7ea9000f5593eeac06e31e60c74fa515802aa05ccc","wss://relay.damus.io/","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a"],["zap","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","wss://relay.damus.io/","0.9"],["zap","3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","wss://relay.nostr.band/","0.1"]]}] +[11:11:46.019] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#FunnyCats \n#Cats ᓚá˜ðŸ˜¹ áµáµ‰áµ’Ê· \" \nhttps://images2.imgbox.com/38/d8/893Xeyig_o.jpg \n#MidnightProwler 🌙ðŸˆâ€â¬›","created_at":1759417905,"id":"53f73fee298dc8aaca7ad81cb787daeaa8bb5c3933de51e0f791d09b91e037a0","kind":1,"pubkey":"340d9f8f4aa9fb37f151526eccf29c730ef94eaba98a2e55cd3101a7c7daf082","sig":"c6ed89b49b44e4a5a17c3c3a1059ee9430289e140a030655294ad26ef7bfd842f8a2cf0eb8386219ec35038ec3e505474fdcd53cd52be6de71d0ee3a97232428","tags":[]}] +[11:11:46.532] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔥💜🔥💜🔥💜🔥💜🔥💜🔥💜 https://nostr.download/4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b.mp4","created_at":1759417905,"id":"736ff82bde3e13afe3f09cc21037529cf41345fa53f35ce492b705a97b783809","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"971b60397c1e2607286fe0d8240990690008e779be81f7bd14171e64237a8fd76d63c9b6ef90d8bcd2f4a49dffdc2487456ac19aa88ee0f95844282e26c4db93","tags":[["alt","A short note: 🔥💜🔥💜🔥💜🔥💜🔥💜🔥💜 https://nostr.download/4c..."],["r","https://nostr.download/4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b.mp4"],["imeta","url https://nostr.download/4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b.mp4","x 4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b","size 1029950","m video/mp4; codecs=\"avc1\"","dim 448x848","blurhash ]6HUwfF4L3Ef?^=y#k$|0KIU02xa0L^hMx~q%gOtOZ.9%04T4.VrD%~qNG58xZ8{Ot9GIB?Hae00s.xDt7%09uxu?Hozs:","ox 4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b","alt "]]}] +[11:11:51.129] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:11:51.351] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔥💜🔥💜🔥💜🔥💜🔥💜🔥💜 https://nostr.download/4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b.mp4","created_at":1759417905,"id":"736ff82bde3e13afe3f09cc21037529cf41345fa53f35ce492b705a97b783809","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"971b60397c1e2607286fe0d8240990690008e779be81f7bd14171e64237a8fd76d63c9b6ef90d8bcd2f4a49dffdc2487456ac19aa88ee0f95844282e26c4db93","tags":[["alt","A short note: 🔥💜🔥💜🔥💜🔥💜🔥💜🔥💜 https://nostr.download/4c..."],["r","https://nostr.download/4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b.mp4"],["imeta","url https://nostr.download/4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b.mp4","x 4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b","size 1029950","m video/mp4; codecs=\"avc1\"","dim 448x848","blurhash ]6HUwfF4L3Ef?^=y#k$|0KIU02xa0L^hMx~q%gOtOZ.9%04T4.VrD%~qNG58xZ8{Ot9GIB?Hae00s.xDt7%09uxu?Hozs:","ox 4cd0cc20024760763b1fd9c4e30e9a409fa5fbf43ee8b36f94ac6679804c366b","alt "]]}] +[11:11:51.411] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#FunnyCats \n#Cats ᓚá˜ðŸ˜¹ áµáµ‰áµ’Ê· \" \nhttps://images2.imgbox.com/38/d8/893Xeyig_o.jpg \n#MidnightProwler 🌙ðŸˆâ€â¬›","created_at":1759417905,"id":"53f73fee298dc8aaca7ad81cb787daeaa8bb5c3933de51e0f791d09b91e037a0","kind":1,"pubkey":"340d9f8f4aa9fb37f151526eccf29c730ef94eaba98a2e55cd3101a7c7daf082","sig":"c6ed89b49b44e4a5a17c3c3a1059ee9430289e140a030655294ad26ef7bfd842f8a2cf0eb8386219ec35038ec3e505474fdcd53cd52be6de71d0ee3a97232428","tags":[]}] +[11:11:51.472] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"11:11","created_at":1759417898,"id":"c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"bcebf4045a738b8412e1c857a1ee78504724665a8bc3df206ba0d3fe8c12546595917fdae5746969e897638131cd15b1a44c50601679090bf34fa68378e54af3","tags":[]}] +[11:11:51.532] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!\nnostr:nevent1qqsqw70jax9ngzanfw9akl4fqq84tylw4srwx8nqca8629vq92s9enqpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg8ga5me33hla0l6ppgp4su7yutx9073vrmg372vghtf9krk0hf5tgpsgqqqqqqsf6mnlh","created_at":1759417896,"id":"4b196d2d9ce5a5721aa2dcf8eb59e3a46ec3225e79a4417e07b32a5a957cc630","kind":1,"pubkey":"3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","sig":"22a01c6dee2f8c049cf3b3688246f798fb3b336f88455d969ec4d12a6d9ddc57b3d5ab535298abbf1fc462147c0aaaab399ab828d307e0ba12c4c4e5b0aadc5c","tags":[["alt","A short note: GM!\nnostr:nevent1qqsqw70jax9ngzanfw9akl4fqq84tylw4..."],["p","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","wss://relay.damus.io/"],["q","0779f2e98b340bb34b8bdb7ea9000f5593eeac06e31e60c74fa515802aa05ccc","wss://relay.damus.io/","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a"],["zap","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","wss://relay.damus.io/","0.9"],["zap","3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","wss://relay.nostr.band/","0.1"]]}] +[11:11:51.593] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"i doubt it\n\ni really do","created_at":1759417894,"id":"e947b0c2b90dd6df54b4ecbe83838210dce8d92004562acff5b3ac75f653834e","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"ded893a800bacae59ae158800502b2b8d01f49f96f6e24534e8223cfef700579d68afb07db72edf7f19d26ce615f1a58d26d6e1978aafcec7fe68b9c0e593d5b","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","c812178980cac1a1b7c5c3709a8f4ed5f6e802da4a4be5224868e686a2575d48","","reply"]]}] +[11:11:51.653] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yeah that wasn't bad at all","created_at":1759417893,"id":"4a0a16006341734816a167a382e882f24ad8fcb045a959f5b77ff786670800c1","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"9ff278250c45a0e7c5ae8ea34806f607f10859f12a8384810fd2d8865b21c6cd4fe6feb20c04c84a114debca16eb904d267b8b0e2678acf6c09fa042c2f9e493","tags":[["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://nostr.wine/","root"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","","reply"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"]]}] +[11:11:51.714] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Which essential oils would you include if up to you? Would they just be for scent or serve a health purpose?","created_at":1759417885,"id":"3335c38d5ebd5fbe4c53ecd8af3ef9903a91e1fb19f26612d1385013dceb1585","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"838e239ce19cf625c50c93baef072277a58c47369cce234e1ebaef820d7de1b7ea64778b0e12ea6e5d11773dc519e1466ebe45fc8ecf53792ba4d0ca5d7ee313","tags":[["e","565b19242d6ff350283cd43cc481f435ffe5f3b4f71d7ea36f5baa5ba8a941ba","","root","356875ffd729b06eeb4c1d7a70a1f750045d067774d21c0faffe4af2bf96a2e8"],["e","7f78b814039e1f859a3c8ff6b53959a63b277c70b3646dad7597f94a29c52ce1","wss://bitcoiner.social","reply"],["p","356875ffd729b06eeb4c1d7a70a1f750045d067774d21c0faffe4af2bf96a2e8","","mention"]]}] +[11:11:51.775] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Mark Gurman on Apple shifting resources away from a lighter Vision Pro:\n\n\"The company had been preparing a cheaper, lighter variant of its headset — code-named N100 — for release in 2027. But Apple announced internally last week that it’s moving staff from that project to accelerate work on glasses, according to people with knowledge of the matter.\"\n\nThey should do both. I’ve been skeptical of Vision Pro all along, but it does need a “Vision Air†hardware update, unless they plan to abandon it. See also: Casey Neistat’s latest video. https://www.bloomberg.com/news/articles/2025-10-01/apple-shelves-vision-headset-revamp-to-prioritize-meta-like-ai-smart-glasses?embedded-checkout=true https://youtu.be/vRKayRN0QhU?si=mpvOFB_EGYxlAdRD","created_at":1759417882,"id":"fda34c3cdc87272adecb9799a10b5a2eedee099ce274037a69edc8368c8729cc","kind":1,"pubkey":"ee6aa0bdaaa8778c0ebee4d2aec6ec52c7bb17e3d8f5446615644d40c310a906","sig":"6b2b77858e0042a19c9dece929e9255bf7b33a99d34dd96ac2b72e29033fe60fc969c5117dd6141002311e16bd503c3e7fe258d666d79f5c259946a77199dba7","tags":[]}] +[11:11:51.835] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"Differently Abled.\" 🤣\n\n💜ðŸ•","created_at":1759417881,"id":"f8259ec1ee943dca750b3b1e501bbeef0e10e98656fcd61dde6634c2f54973c3","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"43c43e1d899db850e4655d3392f8ae5186f893cc18a79075f2ea1b04a561efd78b6983c54a5861e06b4004e2ba613edd41763239e0fbf0d0363fc42b1d6c409d","tags":[["alt","A short note: \"Differently Abled.\" 🤣\n\n💜ðŸ•"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://relay.damus.io/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","wss://nos.lol/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:11:51.896] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I don't know but I misunderstand many new memes. ","created_at":1759417880,"id":"2b24fe66df1f471e6057e7a4df79308569556f5c70deedeab383d8ebd1368669","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"0178b9858f99fe3de691d165facede0a4b0de8f244bba36356fd3e30b517b798883e0ecb8bdf2c239e1b8b62a32607c54dfe0b68a3117d4c6357ea456ae3d168","tags":[["alt","A short note: I don't know but I misunderstand many new memes. "],["e","b5b61a8730c7d846ccb8f5e6fac5258beacfeab7b37e8baa0402698b6b3615ce","wss://relay.damus.io/","root","d6b095f3947562642306edbf0c22c22b7b7855499088873df353506b5775d03d"],["p","d6b095f3947562642306edbf0c22c22b7b7855499088873df353506b5775d03d","wss://relay.damus.io/"]]}] +[11:11:51.957] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:11:55.609] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Orange tie cantillonaires have a different agenda.\n\nBuild aa FIAT leveraged system on top of Bitcoin \nNot seeking a P2P electronic cash system..\n\nYou are becoming part of their propaganda powerhouse ","created_at":1759417915,"id":"850ce1c33f7abb4149dbe1f374af49b4ead09a64edad5ee8983a98a0d09abd27","kind":1,"pubkey":"916cd0a679368be7449abd24a3aaf12f75941a316549f6b42c5355567bd33545","sig":"13304941805513c86ca26a5c21ba93f8d598945009048657f9644d3037076e225a330178e3c45029d3a32470e625f6c936c1042f38b016ca221f1704d54e1a2d","tags":[["e","9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","","root"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","","mention"]]}] +[11:11:55.669] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã“ã“ã¾ã§æ¶¼ã—ã„ã¨ã€çª“ã‚’é–‹ã‘ãŸã¾ã¾å¯ãŸã‚‰é¢¨é‚ªã‚’引ããª","created_at":1759417913,"id":"48d8497b43bf697dae7435bba6fe4aabfb76982b13d237c88793bbc977bc6a30","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"3e550e09212926c60cdf09e6ef3216222edfbd3b6dce3e59fa4b6a3309f809277fd4f3328dc47aa6b5ec47a2f7190e43a785bd996b30b9322098edd30ac11d06","tags":[["alt","A short note: ã“ã“ã¾ã§æ¶¼ã—ã„ã¨ã€çª“ã‚’é–‹ã‘ãŸã¾ã¾å¯ãŸã‚‰é¢¨é‚ªã‚’引ããª"]]}] +[11:11:57.612] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ðŸ˜\n\nnostr:nevent1qqsrmqm3y3dspvutdtrmsclxcaxq0ue5q09pemzkr7tdhvgywxpqfkczyqu8lgegrx8x0fqqetcqj37vj8svzekjf4ca3d9h3fkra7gl7ng9sqcyqqqqqqgwelhgl","created_at":1759417917,"id":"3fdc82645b4abe398d29739859e646a00e50faa8e75510e396282c9dedd8b2c0","kind":1,"pubkey":"17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","sig":"18fc24e92fab0e72c8070b411538a7deb5613915c90a5f446a05781b758ca4e0366370a323d8632886f155201f1c158eaafb427c349623a07ca5fb4deaea382c","tags":[["q","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"]]}] +[11:12:01.517] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I came from Twitter two or three years ago, thinking I could never really say what I meant there with my IRL identity. Irony was since I’ve come here I almost police myself more, as I value the conversation here more","created_at":1759417921,"id":"d90914570dabcdc5f2aa6a9859589a254287561c8d40fe16ccc6b11d8ad6e531","kind":1,"pubkey":"3b7550d595ec596f8d3a959823deead90a330e347ba423953058ea67aa34878f","sig":"1f03edccf11d7ed6c51bc3fa4f85bde4a299fe607ff39642b1343b60a5e655f234dd8b946fcf37795bf39e9fcf8c250139a8e2ae37e4b136112b5107f70de4f6","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[11:12:06.127] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hmmm, adopting the “Democrat’s Shutdown†is lame and lazy. ","created_at":1759417925,"id":"06e63256eaaf903e6df4d4f767a0b932175b6468ec16e9d272dd191f8f4e4755","kind":1,"pubkey":"4bb45f312d179c255216f26370dddf767fb3b5b45d94e67ab2b69d976d0288a8","sig":"81f6986c4562f27bb6982ff6364834f2904f83c676e4a88b1624c138dcc0c1e35676298c95f17a7ac842556ed81d81816236421094b6fbb7ca8206c65111361b","tags":[["e","6b7a8ef170b8de66cb30c2632fc66da6b211977b06735af0288d97f396892792","wss://bots.utxo.one/","root"],["p","9c5d07933092ed10933ef2cf4b006fdd77e9c76ed3e24cade98098fe0176d77e","","mention"]]}] +[11:12:08.511] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i didnt realize i was hurting you\"\n\nlol","created_at":1759417928,"id":"d4baa2637dd51c1ad848ca1babdb00f3b8c1063ee84bd92386874f41284c8c27","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"b0b06d32682304aa5a2b57a94cdfb3b4647a10f25ab43785134b5e449beb513a44a5bec812160e777d44170c3abdbca7405fd99ca94074bc9842c6f3e5e05712","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","e947b0c2b90dd6df54b4ecbe83838210dce8d92004562acff5b3ac75f653834e","","reply"]]}] +[11:12:08.683] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"​​​​​​​Democrats' Gov't Shutdown Accidentally Revives Trump's Pledge To Cut DC Waste & Fraud\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759417298,"id":"6b7a8ef170b8de66cb30c2632fc66da6b211977b06735af0288d97f396892792","kind":1,"pubkey":"9c5d07933092ed10933ef2cf4b006fdd77e9c76ed3e24cade98098fe0176d77e","sig":"f3077e1c146c0dde009b8125d0cd1f6adace586ec1805564d26eccc740aeeae0f39c5419f336f5af78d6beaca196e169232b93ab843bd094995b099b90c73342","tags":[]}] +[11:12:10.992] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ダークサイドã«ãŠã¡ãªã•ãã†","created_at":1759417931,"id":"cd46648a8fc5a4bb2f0e8f57603c741e9f579585a1f88e841ad8bba81e1f19a1","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"57233c6f8d4f538244638a7187e60cb919a00c96f6e9695f55af384eb09ff9f76e576fa981ec83978bb5973dec2e9c7af1e96fa0c3aeee35d41f62c53dfed6d5","tags":[]}] +[11:12:12.220] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:12:12.331] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:12:12.392] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:12:12.452] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:12:12.513] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:12:12.573] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:12:13.585] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqs8fulgjdzv90wqyc5kz53vpgymghzcfg7haslmaf0vc4zd0avhwlqmqzfjc what is this thread about?","created_at":1759417933,"id":"348611411c6e96a932adecd45fff8cda9e97e72d9e6e8ed52142e01f6251f890","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"777200f4cce60b6d33488e0ed3f213763a1f1c4084c8b476b520e3b6de550e7fd98a6d70b71586d81fadf8a92a705f3a76836cbd1ff966d1270a47d560f1e63d","tags":[["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["e","11550badd956695bcee63e0315264a31e9dc7ed26ac3206f9211f5559c13e2bf","wss://relay.primal.net","root"],["p","c171758284ea5641a11d5410d55de1f53bfe90fcfac3b72f90a619b798fa5700"],["r","wss://eden.nostr.land/"],["r","wss://hist.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.primal.net/","read"],["r","wss://relay.snort.social/"],["r","wss://yabu.me/"]]}] +[11:12:17.446] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Digital Hijra also entails finding your tribe online, with people that are like-minded. \n\nYou can not do this alone. nostr:note1nevyzv7yku9gsdnemnqfnv6jajrnykweqh2sjx4e0erue0fyu4qsrwu8m7","created_at":1759417937,"id":"08a457d3543d6a3f98ca5ed75fcb4d901481fb0911d4bf7c9e48178ddf691ce9","kind":1,"pubkey":"e0921d610ee655396cfac6c9907b6ad11f3a1dde5770029e1284e6cae0fe7bd5","sig":"c01be325b646ce4a9adfaed21ece1ce2dd0b0a514679540d6b26f166cf6378c67349fabfa5215f9215fd882aea2a5a3684ab7f17976a0ff86793b6e1c2fb25de","tags":[["q","9e584133c4b70a883679dcc099b352ec873259d905d5091ab97e47ccbd24e541"],["p","e67ceb7771bac40f71af5d86ca5cdccc00044b645a4e08586128ef24f86387fc","","mention"]]}] +[11:12:18.946] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"在西è—应该ä¸å¸¸æ´—澡å§ðŸ¤”","created_at":1759417937,"id":"b8865d9276b9c8a8cdafd1f392d68d6dfd4ab28ebbb780a299c5a29a897c779a","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"e3e0f0e8b1afb40952ffd3bb7708d5d7bfcddc94c085fef76d68d32532db748fbfe840ac5caff98d76fa5e0d2331e4ef9f26c14c6bac5386cd5e68fde24bfad2","tags":[]}] +[11:12:21.221] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:12:21.374] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"在西è—应该ä¸å¸¸æ´—澡å§ðŸ¤”","created_at":1759417937,"id":"b8865d9276b9c8a8cdafd1f392d68d6dfd4ab28ebbb780a299c5a29a897c779a","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"e3e0f0e8b1afb40952ffd3bb7708d5d7bfcddc94c085fef76d68d32532db748fbfe840ac5caff98d76fa5e0d2331e4ef9f26c14c6bac5386cd5e68fde24bfad2","tags":[]}] +[11:12:21.434] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Digital Hijra also entails finding your tribe online, with people that are like-minded. \n\nYou can not do this alone. nostr:note1nevyzv7yku9gsdnemnqfnv6jajrnykweqh2sjx4e0erue0fyu4qsrwu8m7","created_at":1759417937,"id":"08a457d3543d6a3f98ca5ed75fcb4d901481fb0911d4bf7c9e48178ddf691ce9","kind":1,"pubkey":"e0921d610ee655396cfac6c9907b6ad11f3a1dde5770029e1284e6cae0fe7bd5","sig":"c01be325b646ce4a9adfaed21ece1ce2dd0b0a514679540d6b26f166cf6378c67349fabfa5215f9215fd882aea2a5a3684ab7f17976a0ff86793b6e1c2fb25de","tags":[["q","9e584133c4b70a883679dcc099b352ec873259d905d5091ab97e47ccbd24e541"],["p","e67ceb7771bac40f71af5d86ca5cdccc00044b645a4e08586128ef24f86387fc","","mention"]]}] +[11:12:21.495] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqs8fulgjdzv90wqyc5kz53vpgymghzcfg7haslmaf0vc4zd0avhwlqmqzfjc what is this thread about?","created_at":1759417933,"id":"348611411c6e96a932adecd45fff8cda9e97e72d9e6e8ed52142e01f6251f890","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"777200f4cce60b6d33488e0ed3f213763a1f1c4084c8b476b520e3b6de550e7fd98a6d70b71586d81fadf8a92a705f3a76836cbd1ff966d1270a47d560f1e63d","tags":[["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["e","11550badd956695bcee63e0315264a31e9dc7ed26ac3206f9211f5559c13e2bf","wss://relay.primal.net","root"],["p","c171758284ea5641a11d5410d55de1f53bfe90fcfac3b72f90a619b798fa5700"],["r","wss://eden.nostr.land/"],["r","wss://hist.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.primal.net/","read"],["r","wss://relay.snort.social/"],["r","wss://yabu.me/"]]}] +[11:12:21.556] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ダークサイドã«ãŠã¡ãªã•ãã†","created_at":1759417931,"id":"cd46648a8fc5a4bb2f0e8f57603c741e9f579585a1f88e841ad8bba81e1f19a1","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"57233c6f8d4f538244638a7187e60cb919a00c96f6e9695f55af384eb09ff9f76e576fa981ec83978bb5973dec2e9c7af1e96fa0c3aeee35d41f62c53dfed6d5","tags":[]}] +[11:12:21.616] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i didnt realize i was hurting you\"\n\nlol","created_at":1759417928,"id":"d4baa2637dd51c1ad848ca1babdb00f3b8c1063ee84bd92386874f41284c8c27","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"b0b06d32682304aa5a2b57a94cdfb3b4647a10f25ab43785134b5e449beb513a44a5bec812160e777d44170c3abdbca7405fd99ca94074bc9842c6f3e5e05712","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","e947b0c2b90dd6df54b4ecbe83838210dce8d92004562acff5b3ac75f653834e","","reply"]]}] +[11:12:21.677] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hmmm, adopting the “Democrat’s Shutdown†is lame and lazy. ","created_at":1759417925,"id":"06e63256eaaf903e6df4d4f767a0b932175b6468ec16e9d272dd191f8f4e4755","kind":1,"pubkey":"4bb45f312d179c255216f26370dddf767fb3b5b45d94e67ab2b69d976d0288a8","sig":"81f6986c4562f27bb6982ff6364834f2904f83c676e4a88b1624c138dcc0c1e35676298c95f17a7ac842556ed81d81816236421094b6fbb7ca8206c65111361b","tags":[["e","6b7a8ef170b8de66cb30c2632fc66da6b211977b06735af0288d97f396892792","wss://bots.utxo.one/","root"],["p","9c5d07933092ed10933ef2cf4b006fdd77e9c76ed3e24cade98098fe0176d77e","","mention"]]}] +[11:12:21.737] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I came from Twitter two or three years ago, thinking I could never really say what I meant there with my IRL identity. Irony was since I’ve come here I almost police myself more, as I value the conversation here more","created_at":1759417921,"id":"d90914570dabcdc5f2aa6a9859589a254287561c8d40fe16ccc6b11d8ad6e531","kind":1,"pubkey":"3b7550d595ec596f8d3a959823deead90a330e347ba423953058ea67aa34878f","sig":"1f03edccf11d7ed6c51bc3fa4f85bde4a299fe607ff39642b1343b60a5e655f234dd8b946fcf37795bf39e9fcf8c250139a8e2ae37e4b136112b5107f70de4f6","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"]]}] +[11:12:21.798] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ðŸ˜\n\nnostr:nevent1qqsrmqm3y3dspvutdtrmsclxcaxq0ue5q09pemzkr7tdhvgywxpqfkczyqu8lgegrx8x0fqqetcqj37vj8svzekjf4ca3d9h3fkra7gl7ng9sqcyqqqqqqgwelhgl","created_at":1759417917,"id":"3fdc82645b4abe398d29739859e646a00e50faa8e75510e396282c9dedd8b2c0","kind":1,"pubkey":"17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4","sig":"18fc24e92fab0e72c8070b411538a7deb5613915c90a5f446a05781b758ca4e0366370a323d8632886f155201f1c158eaafb427c349623a07ca5fb4deaea382c","tags":[["q","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"]]}] +[11:12:21.858] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Orange tie cantillonaires have a different agenda.\n\nBuild aa FIAT leveraged system on top of Bitcoin \nNot seeking a P2P electronic cash system..\n\nYou are becoming part of their propaganda powerhouse ","created_at":1759417915,"id":"850ce1c33f7abb4149dbe1f374af49b4ead09a64edad5ee8983a98a0d09abd27","kind":1,"pubkey":"916cd0a679368be7449abd24a3aaf12f75941a316549f6b42c5355567bd33545","sig":"13304941805513c86ca26a5c21ba93f8d598945009048657f9644d3037076e225a330178e3c45029d3a32470e625f6c936c1042f38b016ca221f1704d54e1a2d","tags":[["e","9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","","root"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","","mention"]]}] +[11:12:21.919] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã“ã“ã¾ã§æ¶¼ã—ã„ã¨ã€çª“ã‚’é–‹ã‘ãŸã¾ã¾å¯ãŸã‚‰é¢¨é‚ªã‚’引ããª","created_at":1759417913,"id":"48d8497b43bf697dae7435bba6fe4aabfb76982b13d237c88793bbc977bc6a30","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"3e550e09212926c60cdf09e6ef3216222edfbd3b6dce3e59fa4b6a3309f809277fd4f3328dc47aa6b5ec47a2f7190e43a785bd996b30b9322098edd30ac11d06","tags":[["alt","A short note: ã“ã“ã¾ã§æ¶¼ã—ã„ã¨ã€çª“ã‚’é–‹ã‘ãŸã¾ã¾å¯ãŸã‚‰é¢¨é‚ªã‚’引ããª"]]}] +[11:12:21.979] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:12:30.454] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Rick knows the best!\n\nnostr:note1u6njkq3qgfs0vk9muay9umnh83yvurzmrxkemkwvvqrtvafahdwqudxu2z","created_at":1759417950,"id":"ee59ef364aacff70977e04cafb9c211af7599ebb769ac3a7a2efe12cb25eebe8","kind":1,"pubkey":"5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735","sig":"b196fc9745c5917e6e82153c12884a3d7ac59bf97c96f1ea3c84150bd2bc03fe6dc4b935731b512c706e3295ebb2604d2b1bb40e4434944baff210b032d11ca6","tags":[]}] +[11:12:32.568] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i didnt realize what a shit dentist i was\"\n\nlol","created_at":1759417952,"id":"cec33f4392aa38fb03d91f7d16ebf40c7d6ba19c09d82eee716822249d2edbbf","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"680051a23d9d7b217bb1192a98447e7d61dd06a77b2ca9e1379849d607a0f9bf0c81782e8bb75b525aec1e9e8856e4a72a0fda12565077c1f18d0685a9fbf6fb","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","d4baa2637dd51c1ad848ca1babdb00f3b8c1063ee84bd92386874f41284c8c27","","reply"]]}] +[11:12:33.536] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqs8fulgjdzv90wqyc5kz53vpgymghzcfg7haslmaf0vc4zd0avhwlqmqzfjc is this true?","created_at":1759417953,"id":"d4452905c554cdb2defc64c0fbdc2e47c29b053ac416c440221bb02164dcbd56","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"c11ead1aa6c9d52603513c2061d20da30983b5e77ba028442828255940f88bd8f58214286b9915ed7176155b0c9784fd051fbd8020b22eb15fda94d416eb9d3d","tags":[["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["e","11550badd956695bcee63e0315264a31e9dc7ed26ac3206f9211f5559c13e2bf","","root"],["e","348611411c6e96a932adecd45fff8cda9e97e72d9e6e8ed52142e01f6251f890","","reply"],["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["p","c171758284ea5641a11d5410d55de1f53bfe90fcfac3b72f90a619b798fa5700"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["r","wss://eden.nostr.land/"],["r","wss://hist.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.primal.net/","read"],["r","wss://relay.snort.social/"],["r","wss://yabu.me/"],["r","wss://nostr-pub.wellorder.net/"]]}] +[11:12:41.379] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã“れをæ€ã£ãŸã®ã§çª“ã‚’ç‹­ã‚ãŸ","created_at":1759417960,"id":"43839c7d157e2fec5579775cf45e08a0ed4c0fbccf8c7cd2e1893c4a0a3a3fe5","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"ee2f5eadc0d5009bc325cfe2351031339552205a1d68163db846aa3e1876521af19cf02f68357966a480a766448e6f723f86e3ebda916e38da5fdacfd6a96eea","tags":[]}] +[11:12:42.163] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:12:42.274] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:12:42.335] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:12:42.396] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:12:42.456] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:12:42.517] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:12:46.850] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I mostly just sign notes with Amber and use an external wallet for zaps. I never liked giving one application too much control over my Nostr identity. But others value that convenience.","created_at":1759417966,"id":"636746b87729a4e3399b917da0def39a1b716bc434548777d738aac8fe8a68d7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"7536100dd3838a6edb63b061a3ebb2d52029af9abd30b82be719f6bec47dc42227e0c260862e3d69d6f41f5fd3bc1607bf23a91d24c120cffb1906d7a6781885","tags":[["alt","A short note: I mostly just sign notes with Amber and use an ext..."],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://yabu.me/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","wss://nostr.mutinywallet.com/"]]}] +[11:12:47.132] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That tiny sound of Zap arriving... me: 🤗💫 \nhttps://images2.imgbox.com/f4/4d/CREmniQv_o.jpg \n#ConfidenceAndStrength 👊💃 ","created_at":1759417966,"id":"13f2c9183dba8b7d27e7582499101469b19b2e3fe84bc55b8c01f231ec9c14a3","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"85aa0f772b5f7e226dfb209f4a9dc511b060d77098fb1a988d8e8ecb6e2a99f9f403612febaf62da4480ddc17ccdf8f181104a58f71663cde1667f62ce67946d","tags":[]}] +[11:12:47.196] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I am sorry for brainless people like you. So easily manipulated by bad propaganda.\nUnable to realize the truth. Sad.","created_at":1759417956,"id":"414b26ab67c18570424793dae224146e0438aaedccd8f27b25912cbfea84883e","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"2b10480997cedb03462242af4e26cff44f4b3fb1e22a8ca453ca878adc9191c63956cc4d5e948e8edd7311b5cf3da803eff9d59783c0551c51db7418f52765e5","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://nos.lol/","root"],["e","0f447bfaf2966b2323bbb28b1179d8ce3f3b1af3c22c17a5b4c63faa213b3351","wss://relay.snort.social/","reply","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"]]}] +[11:12:51.130] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:12:51.283] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That tiny sound of Zap arriving... me: 🤗💫 \nhttps://images2.imgbox.com/f4/4d/CREmniQv_o.jpg \n#ConfidenceAndStrength 👊💃 ","created_at":1759417966,"id":"13f2c9183dba8b7d27e7582499101469b19b2e3fe84bc55b8c01f231ec9c14a3","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"85aa0f772b5f7e226dfb209f4a9dc511b060d77098fb1a988d8e8ecb6e2a99f9f403612febaf62da4480ddc17ccdf8f181104a58f71663cde1667f62ce67946d","tags":[]}] +[11:12:51.343] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I mostly just sign notes with Amber and use an external wallet for zaps. I never liked giving one application too much control over my Nostr identity. But others value that convenience.","created_at":1759417966,"id":"636746b87729a4e3399b917da0def39a1b716bc434548777d738aac8fe8a68d7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"7536100dd3838a6edb63b061a3ebb2d52029af9abd30b82be719f6bec47dc42227e0c260862e3d69d6f41f5fd3bc1607bf23a91d24c120cffb1906d7a6781885","tags":[["alt","A short note: I mostly just sign notes with Amber and use an ext..."],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://yabu.me/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","wss://nostr.mutinywallet.com/"]]}] +[11:12:51.404] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã“れをæ€ã£ãŸã®ã§çª“ã‚’ç‹­ã‚ãŸ","created_at":1759417960,"id":"43839c7d157e2fec5579775cf45e08a0ed4c0fbccf8c7cd2e1893c4a0a3a3fe5","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"ee2f5eadc0d5009bc325cfe2351031339552205a1d68163db846aa3e1876521af19cf02f68357966a480a766448e6f723f86e3ebda916e38da5fdacfd6a96eea","tags":[]}] +[11:12:51.464] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I am sorry for brainless people like you. So easily manipulated by bad propaganda.\nUnable to realize the truth. Sad.","created_at":1759417956,"id":"414b26ab67c18570424793dae224146e0438aaedccd8f27b25912cbfea84883e","kind":1,"pubkey":"77f56243a824d22573fb755dd52c73c14986d15c0c98512d45f4deb08e9f879a","sig":"2b10480997cedb03462242af4e26cff44f4b3fb1e22a8ca453ca878adc9191c63956cc4d5e948e8edd7311b5cf3da803eff9d59783c0551c51db7418f52765e5","tags":[["p","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"],["p","846307688a09ec112967eb0544e78a9e88c48f50712c39ed491ff2b6fa019ae8"],["e","71d826ffe314c594db3f7c361a42d15b59aa4a329033bcff4d4ab6056fa3513d","wss://nos.lol/","root"],["e","0f447bfaf2966b2323bbb28b1179d8ce3f3b1af3c22c17a5b4c63faa213b3351","wss://relay.snort.social/","reply","f32f39596faef4bb91633b67dd798a0f6ab95bdcbc78babf202b8876a8fc7d98"]]}] +[11:12:51.525] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqs8fulgjdzv90wqyc5kz53vpgymghzcfg7haslmaf0vc4zd0avhwlqmqzfjc is this true?","created_at":1759417953,"id":"d4452905c554cdb2defc64c0fbdc2e47c29b053ac416c440221bb02164dcbd56","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"c11ead1aa6c9d52603513c2061d20da30983b5e77ba028442828255940f88bd8f58214286b9915ed7176155b0c9784fd051fbd8020b22eb15fda94d416eb9d3d","tags":[["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["e","11550badd956695bcee63e0315264a31e9dc7ed26ac3206f9211f5559c13e2bf","","root"],["e","348611411c6e96a932adecd45fff8cda9e97e72d9e6e8ed52142e01f6251f890","","reply"],["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["p","c171758284ea5641a11d5410d55de1f53bfe90fcfac3b72f90a619b798fa5700"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["r","wss://eden.nostr.land/"],["r","wss://hist.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.primal.net/","read"],["r","wss://relay.snort.social/"],["r","wss://yabu.me/"],["r","wss://nostr-pub.wellorder.net/"]]}] +[11:12:51.586] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i didnt realize what a shit dentist i was\"\n\nlol","created_at":1759417952,"id":"cec33f4392aa38fb03d91f7d16ebf40c7d6ba19c09d82eee716822249d2edbbf","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"680051a23d9d7b217bb1192a98447e7d61dd06a77b2ca9e1379849d607a0f9bf0c81782e8bb75b525aec1e9e8856e4a72a0fda12565077c1f18d0685a9fbf6fb","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","d4baa2637dd51c1ad848ca1babdb00f3b8c1063ee84bd92386874f41284c8c27","","reply"]]}] +[11:12:51.646] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Rick knows the best!\n\nnostr:note1u6njkq3qgfs0vk9muay9umnh83yvurzmrxkemkwvvqrtvafahdwqudxu2z","created_at":1759417950,"id":"ee59ef364aacff70977e04cafb9c211af7599ebb769ac3a7a2efe12cb25eebe8","kind":1,"pubkey":"5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735","sig":"b196fc9745c5917e6e82153c12884a3d7ac59bf97c96f1ea3c84150bd2bc03fe6dc4b935731b512c706e3295ebb2604d2b1bb40e4434944baff210b032d11ca6","tags":[]}] +[11:12:51.707] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"在西è—应该ä¸å¸¸æ´—澡å§ðŸ¤”","created_at":1759417937,"id":"b8865d9276b9c8a8cdafd1f392d68d6dfd4ab28ebbb780a299c5a29a897c779a","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"e3e0f0e8b1afb40952ffd3bb7708d5d7bfcddc94c085fef76d68d32532db748fbfe840ac5caff98d76fa5e0d2331e4ef9f26c14c6bac5386cd5e68fde24bfad2","tags":[]}] +[11:12:51.767] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The Digital Hijra also entails finding your tribe online, with people that are like-minded. \n\nYou can not do this alone. nostr:note1nevyzv7yku9gsdnemnqfnv6jajrnykweqh2sjx4e0erue0fyu4qsrwu8m7","created_at":1759417937,"id":"08a457d3543d6a3f98ca5ed75fcb4d901481fb0911d4bf7c9e48178ddf691ce9","kind":1,"pubkey":"e0921d610ee655396cfac6c9907b6ad11f3a1dde5770029e1284e6cae0fe7bd5","sig":"c01be325b646ce4a9adfaed21ece1ce2dd0b0a514679540d6b26f166cf6378c67349fabfa5215f9215fd882aea2a5a3684ab7f17976a0ff86793b6e1c2fb25de","tags":[["q","9e584133c4b70a883679dcc099b352ec873259d905d5091ab97e47ccbd24e541"],["p","e67ceb7771bac40f71af5d86ca5cdccc00044b645a4e08586128ef24f86387fc","","mention"]]}] +[11:12:51.828] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqs8fulgjdzv90wqyc5kz53vpgymghzcfg7haslmaf0vc4zd0avhwlqmqzfjc what is this thread about?","created_at":1759417933,"id":"348611411c6e96a932adecd45fff8cda9e97e72d9e6e8ed52142e01f6251f890","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"777200f4cce60b6d33488e0ed3f213763a1f1c4084c8b476b520e3b6de550e7fd98a6d70b71586d81fadf8a92a705f3a76836cbd1ff966d1270a47d560f1e63d","tags":[["p","74f3e89344c2bdc0262961522c0a09b45c584a3d7ec3fbea5ecc544d7f59777c","","mention"],["e","11550badd956695bcee63e0315264a31e9dc7ed26ac3206f9211f5559c13e2bf","wss://relay.primal.net","root"],["p","c171758284ea5641a11d5410d55de1f53bfe90fcfac3b72f90a619b798fa5700"],["r","wss://eden.nostr.land/"],["r","wss://hist.nostr.land/"],["r","wss://nos.lol/"],["r","wss://nostr-pub.wellorder.net/"],["r","wss://nostr.bitcoiner.social/"],["r","wss://nostr.mom/"],["r","wss://relay.damus.io/"],["r","wss://relay.nostr.band/"],["r","wss://relay.primal.net/","read"],["r","wss://relay.snort.social/"],["r","wss://yabu.me/"]]}] +[11:12:51.889] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:12:52.614] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"If anyone is looking for a slick (and maintained) desktop streaming music player for their music server, I've been using Feishin. I'm slowly recovering from my spotify \"ban\". \n\nIt's compatible with subsonic APIs with extra stuff for navidrome and jellyfin users. ","created_at":1759417971,"id":"d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","kind":1,"pubkey":"036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","sig":"005e93e114fbdb08a6911b6c21db2a875b6aca55cfb19b64a1d8fa97a6b16e906f98585dce3708cbb918091906274e4b35adc4ac8c4d3f2e1e7f487f258fd368","tags":[]}] +[11:12:54.777] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"布団ã«å…¥ã‚‹ã“ã‚ã«ã¾ãŸèª¿æ•´ã™ã‚‹","created_at":1759417974,"id":"0b91cde0a140dff51ec714274fa09e46a9f4b938f7c0ae44cbb9d642e7a2bed2","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"361e71ca40bfe76436917f07dd1790205ab231d6e90e5c66e84be1bfc343d249bbf6e28577cece33ea1b2a85458318755f4065ae592789d5c2bb216c45386c3d","tags":[]}] +[11:12:56.941] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://youtu.be/GSRLXA0TuqA?si=KFM25ZrQZJUlh3uJ \n\n","created_at":1759417975,"id":"3b00435051d78271d452382d27493e37c645ea2830a8580edee573bfde85ae25","kind":1,"pubkey":"48b70b2c7344dde339ab869be7c4f5e11fae1bc9fdd2eeeb402c8eedbbbb94a4","sig":"b92c07a43e138741f46259595fa83173c62792c0e78a68f29683a23991cd12712a40f703c36907f69898f3f0d5ec8a1520762219de22608d13ea3f4d8b1a8636","tags":[]}] +[11:13:08.690] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"WTF is thisðŸ§\nnostr:nprofile1qqsfeg9aw3g8gtt2yqcecr3af3nee8syd2wuwr5w74wzjp0zgpfrgzcpz9mhxue69uhkummnw3ezuamfdejj7qgewaehxw309aex2mrp0yhx6mmddaehgu3wwp5ku6e0qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj75pvvxy\nnostr:nprofile1qqsd9pqnwyshrse7z975h5ynptq9ktz3kv8txqs7lr20zgelqtys52cpzemhxue69uhkummnw3ex2mrfw3jhxtn0wfnj7qg3waehxw309ahx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz79h8t59\nnostr:nprofile1qqsqlk6vykkxt8j7lpqa446p0ea900yqn8200rpugxjqjn2tnjye8dqppemhxue69uhkummn9ekx7mp0qyghwumn8ghj7mn0wd68ytnhd9hx2tcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsp42zmr\nnostr:nevent1qqsvsvpmc42rvpaxw83uy9vysw43dddj07zvgtqgws2mkd4z0tydatspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qvcyv56lrzc40h4up6jnlaxg9n5gl64g7ajvet4yk0fs54u6a6p0qxpqqqqqqz7k7qva","created_at":1759417988,"id":"26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"13ce574d536b5c5ee0fd06e32d92c3754d422da624f448c3d829351b4c78931528a6c7c0ef98dcf9e86d13d6c1392357773e985656e6a75c7735ba2b7f677ee9","tags":[["alt","A short note: WTF is thisðŸ§\nnostr:nprofile1qqsfeg9aw3g8gtt2yqcec..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","wss://nos.lol/"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","wss://relay.mostr.pub/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","wss://nos.lol/"],["q","c8303bc5543607a671e3c2158483ab16b5b27f84c42c087415bb36a27ac8deae","wss://relay.mostr.pub/","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e"],["zap","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","wss://relay.mostr.pub/","0.9"],["zap","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/","0.1"]]}] +[11:13:10.739] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Another solution\n\nnostr:nevent1qqsxvwuhk6wlkd5nfg68je3xsrh53qdjnex35usn7ffljwq3rmz93rspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9agqkpkgz7rnxwj6jsl8mrh43n06uww7rn2pgrslcp28amd4g58vpsgqqqqqqs6vsj5q","created_at":1759417989,"id":"c936b08c1fe5f03f94259bef32ac50cc5ebb364b132c55ba3d1d6ee3a2fe3e9f","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"6f82fb9d645f27b9af700167a3ea7ffc82307c422a02ad6f55e0f50fdab8ad28e4c98b5a7cb9ea6e6771941e050a65aba569d29e967065c06d1ec3bc1cdf9133","tags":[["alt","A short note: Another solution\n\nnostr:nevent1qqsxvwuhk6wlkd5nfg6..."],["p","bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b","wss://eden.nostr.land/"],["q","663b97b69dfb36934a3479662680ef4881b29e4d1a7213f253f938111ec4588e","wss://relay.damus.io/","bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b"],["zap","bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b","wss://eden.nostr.land/","0.9"],["zap","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/","0.1"]]}] +[11:13:10.910] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GN \n\n\n\nhttps://blossom.primal.net/7cacd425774be9e21c58e0d8eac144d4d4276ac2e6ee1c40e9ec12f0212164cb.jpg","created_at":1759417989,"id":"881d215297390b40aaf4681814a6cec62fcbeb74bf7158efb47d263a09eb9005","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"99290aa93b0627e7a681b266e64b461f42377c42c7d0f6959fda611177044cbe12ca89fe86d4ed7d7900a670ca209c86259ec13821ada09a68c726227c95abe9","tags":[["imeta","url https://blossom.primal.net/7cacd425774be9e21c58e0d8eac144d4d4276ac2e6ee1c40e9ec12f0212164cb.jpg","m image/jpeg","ox 7cacd425774be9e21c58e0d8eac144d4d4276ac2e6ee1c40e9ec12f0212164cb","dim 719x798"]]}] +[11:13:12.138] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:13:12.249] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:13:12.310] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:13:12.370] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:13:12.430] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:13:12.491] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:13:13.488] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"See dog, zap dog. 💜ðŸ•","created_at":1759417994,"id":"11f8c7f8c3a8e0dc1a7d5f3a29364906c1b5d0e9a4cc47d3986b5c434d827156","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"0aedc1d30f42a6fc6bfd0917f7312f1fd107569f323dfca5b36a76c1294b15707047985e7701ae283b08296a9a7f307018dc3e1aaa6667e80cd5f01e93609c3a","tags":[["alt","A short note: See dog, zap dog. 💜ðŸ•"],["e","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","wss://relay.damus.io/","root","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058","wss://relay.damus.io/"]]}] +[11:13:20.745] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"‘Useless’ von der Leyen ‘should quit’ – Ryanair boss\n\nFrom RT\n\nMichael O’Leary says EC president can’t manage drone threat Ryanair CEO Michael O’Leary has slammed Brussels for failing to protect the bloc’s airports from drones, calling for European Commission president Ursula von der Leyen to resign. He has argued that unauthorized UAVs disrupting air traffic should be shot down. Mysterious drone sightings have plagued the […]\n\nOct 2nd 2025 11:03am EDT\n\nSource Link: https://www.rt.com/news/625762-ryanair-drones-eu-fail/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044288","created_at":1759417940,"id":"76bb2a0a0a77137a473337da0ce71fb84c29f9817282cce937488f89cecf0f81","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"ad5a696610765bffdb90cb592e11f55dab4c61675a22d5b9e690ed8a45bca421d2d47586b3259c4179eb5e2e224b66dcf9e5a181873488d40f51134001c879a1","tags":[]}] +[11:13:21.137] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:13:21.250] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Every time someone argues something and uses the term Nazi or Nazism as a pejorative to emphasize their argument, they come across as a complete idiot, and even if they are right, I find it hard to believe them because of the ignorance they have shown.\n\nYou didn't live during the Nazi era, neither did I, but I'm sure that whoever says this hasn't even spent 100 hours of their time studying World War II in depth.\n\nThe Nazis were bad, of course, like any government, they did bad things... of course, they dropped two nuclear bombs on civilians.\n\nBefore, the Japanese were very bad, and now they are very good. Have they changed so much?\n\nBefore, the Jews were very good, and now they are very bad.\n\nThink a little before you speak. Neither the bad guys are that bad nor the good guys that good.\n\nIf you're a Bitcoiner, don't use Nazism to strengthen your argument.\n\n\n","created_at":1759418000,"id":"f63a409062f780b64f2d9f561676c9c330bde00ae1f3feee43d592c36b929972","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"a3aa24aacd82d982715621d7c224d136395bf03a1da9107d1b2713d8d6715d3ad0adb7f73f03bddd0386657437a91b28de9013cb153d0598dea4c58b5bec6975","tags":[]}] +[11:13:21.310] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Every time someone argues something and uses the term Nazi or Nazism as a pejorative to emphasize their argument, they come across as a complete idiot, and even if they are right, I find it hard to believe them because of the ignorance they have shown.\n\nYou didn't live during the Nazi era, neither did I, but I'm sure that whoever says this hasn't even spent 100 hours of their time studying World War II in depth.\n\nThe Nazis were bad, of course, like any government, they did bad things... of course, they dropped two nuclear bombs on civilians.\n\nBefore, the Japanese were very bad, and now they are very good. Have they changed so much?\n\nBefore, the Jews were very good, and now they are very bad.\n\nThink a little before you speak. Neither the bad guys are that bad nor the good guys that good.\n\nIf you're a Bitcoiner, don't use Nazism to strengthen your argument.\n\n\n","created_at":1759418000,"id":"f63a409062f780b64f2d9f561676c9c330bde00ae1f3feee43d592c36b929972","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"a3aa24aacd82d982715621d7c224d136395bf03a1da9107d1b2713d8d6715d3ad0adb7f73f03bddd0386657437a91b28de9013cb153d0598dea4c58b5bec6975","tags":[]}] +[11:13:21.371] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"See dog, zap dog. 💜ðŸ•","created_at":1759417994,"id":"11f8c7f8c3a8e0dc1a7d5f3a29364906c1b5d0e9a4cc47d3986b5c434d827156","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"0aedc1d30f42a6fc6bfd0917f7312f1fd107569f323dfca5b36a76c1294b15707047985e7701ae283b08296a9a7f307018dc3e1aaa6667e80cd5f01e93609c3a","tags":[["alt","A short note: See dog, zap dog. 💜ðŸ•"],["e","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","wss://relay.damus.io/","root","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058","wss://relay.damus.io/"]]}] +[11:13:21.432] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GN \n\n\n\nhttps://blossom.primal.net/7cacd425774be9e21c58e0d8eac144d4d4276ac2e6ee1c40e9ec12f0212164cb.jpg","created_at":1759417989,"id":"881d215297390b40aaf4681814a6cec62fcbeb74bf7158efb47d263a09eb9005","kind":1,"pubkey":"e3a59924933c9f9f2df83449055eb3858f1480fdd0c5edb95df08bedcd2e6624","sig":"99290aa93b0627e7a681b266e64b461f42377c42c7d0f6959fda611177044cbe12ca89fe86d4ed7d7900a670ca209c86259ec13821ada09a68c726227c95abe9","tags":[["imeta","url https://blossom.primal.net/7cacd425774be9e21c58e0d8eac144d4d4276ac2e6ee1c40e9ec12f0212164cb.jpg","m image/jpeg","ox 7cacd425774be9e21c58e0d8eac144d4d4276ac2e6ee1c40e9ec12f0212164cb","dim 719x798"]]}] +[11:13:21.492] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Another solution\n\nnostr:nevent1qqsxvwuhk6wlkd5nfg68je3xsrh53qdjnex35usn7ffljwq3rmz93rspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9agqkpkgz7rnxwj6jsl8mrh43n06uww7rn2pgrslcp28amd4g58vpsgqqqqqqs6vsj5q","created_at":1759417989,"id":"c936b08c1fe5f03f94259bef32ac50cc5ebb364b132c55ba3d1d6ee3a2fe3e9f","kind":1,"pubkey":"da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","sig":"6f82fb9d645f27b9af700167a3ea7ffc82307c422a02ad6f55e0f50fdab8ad28e4c98b5a7cb9ea6e6771941e050a65aba569d29e967065c06d1ec3bc1cdf9133","tags":[["alt","A short note: Another solution\n\nnostr:nevent1qqsxvwuhk6wlkd5nfg6..."],["p","bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b","wss://eden.nostr.land/"],["q","663b97b69dfb36934a3479662680ef4881b29e4d1a7213f253f938111ec4588e","wss://relay.damus.io/","bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b"],["zap","bd402c1b205e1ccce96a50f9f63bd6337eb8e778735050387f0151fbb6d5143b","wss://eden.nostr.land/","0.9"],["zap","da19b5d291e06ed09ba545bc5366408dc82ba8c9e9f97d32ea8ea60f1f6cbfaa","wss://relay.damus.io/","0.1"]]}] +[11:13:21.552] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"WTF is thisðŸ§\nnostr:nprofile1qqsfeg9aw3g8gtt2yqcecr3af3nee8syd2wuwr5w74wzjp0zgpfrgzcpz9mhxue69uhkummnw3ezuamfdejj7qgewaehxw309aex2mrp0yhx6mmddaehgu3wwp5ku6e0qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj75pvvxy\nnostr:nprofile1qqsd9pqnwyshrse7z975h5ynptq9ktz3kv8txqs7lr20zgelqtys52cpzemhxue69uhkummnw3ex2mrfw3jhxtn0wfnj7qg3waehxw309ahx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz79h8t59\nnostr:nprofile1qqsqlk6vykkxt8j7lpqa446p0ea900yqn8200rpugxjqjn2tnjye8dqppemhxue69uhkummn9ekx7mp0qyghwumn8ghj7mn0wd68ytnhd9hx2tcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsp42zmr\nnostr:nevent1qqsvsvpmc42rvpaxw83uy9vysw43dddj07zvgtqgws2mkd4z0tydatspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qvcyv56lrzc40h4up6jnlaxg9n5gl64g7ajvet4yk0fs54u6a6p0qxpqqqqqqz7k7qva","created_at":1759417988,"id":"26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"13ce574d536b5c5ee0fd06e32d92c3754d422da624f448c3d829351b4c78931528a6c7c0ef98dcf9e86d13d6c1392357773e985656e6a75c7735ba2b7f677ee9","tags":[["alt","A short note: WTF is thisðŸ§\nnostr:nprofile1qqsfeg9aw3g8gtt2yqcec..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","wss://nos.lol/"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","wss://relay.mostr.pub/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","wss://nos.lol/"],["q","c8303bc5543607a671e3c2158483ab16b5b27f84c42c087415bb36a27ac8deae","wss://relay.mostr.pub/","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e"],["zap","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","wss://relay.mostr.pub/","0.9"],["zap","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/","0.1"]]}] +[11:13:21.613] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://youtu.be/GSRLXA0TuqA?si=KFM25ZrQZJUlh3uJ \n\n","created_at":1759417975,"id":"3b00435051d78271d452382d27493e37c645ea2830a8580edee573bfde85ae25","kind":1,"pubkey":"48b70b2c7344dde339ab869be7c4f5e11fae1bc9fdd2eeeb402c8eedbbbb94a4","sig":"b92c07a43e138741f46259595fa83173c62792c0e78a68f29683a23991cd12712a40f703c36907f69898f3f0d5ec8a1520762219de22608d13ea3f4d8b1a8636","tags":[]}] +[11:13:21.673] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"布団ã«å…¥ã‚‹ã“ã‚ã«ã¾ãŸèª¿æ•´ã™ã‚‹","created_at":1759417974,"id":"0b91cde0a140dff51ec714274fa09e46a9f4b938f7c0ae44cbb9d642e7a2bed2","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"361e71ca40bfe76436917f07dd1790205ab231d6e90e5c66e84be1bfc343d249bbf6e28577cece33ea1b2a85458318755f4065ae592789d5c2bb216c45386c3d","tags":[]}] +[11:13:21.734] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"If anyone is looking for a slick (and maintained) desktop streaming music player for their music server, I've been using Feishin. I'm slowly recovering from my spotify \"ban\". \n\nIt's compatible with subsonic APIs with extra stuff for navidrome and jellyfin users. ","created_at":1759417971,"id":"d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","kind":1,"pubkey":"036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","sig":"005e93e114fbdb08a6911b6c21db2a875b6aca55cfb19b64a1d8fa97a6b16e906f98585dce3708cbb918091906274e4b35adc4ac8c4d3f2e1e7f487f258fd368","tags":[]}] +[11:13:21.794] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"That tiny sound of Zap arriving... me: 🤗💫 \nhttps://images2.imgbox.com/f4/4d/CREmniQv_o.jpg \n#ConfidenceAndStrength 👊💃 ","created_at":1759417966,"id":"13f2c9183dba8b7d27e7582499101469b19b2e3fe84bc55b8c01f231ec9c14a3","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"85aa0f772b5f7e226dfb209f4a9dc511b060d77098fb1a988d8e8ecb6e2a99f9f403612febaf62da4480ddc17ccdf8f181104a58f71663cde1667f62ce67946d","tags":[]}] +[11:13:21.855] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I mostly just sign notes with Amber and use an external wallet for zaps. I never liked giving one application too much control over my Nostr identity. But others value that convenience.","created_at":1759417966,"id":"636746b87729a4e3399b917da0def39a1b716bc434548777d738aac8fe8a68d7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"7536100dd3838a6edb63b061a3ebb2d52029af9abd30b82be719f6bec47dc42227e0c260862e3d69d6f41f5fd3bc1607bf23a91d24c120cffb1906d7a6781885","tags":[["alt","A short note: I mostly just sign notes with Amber and use an ext..."],["e","d7ce91f84b7808894937be08ca079db29d729c33427f924e8336320ee0727500","wss://yabu.me/","root","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519"],["p","e7c5f523341649c4dc6d8f2a599e5d141ce6f289bb58f80e528fe7d71fcac519","wss://nostr.mutinywallet.com/"]]}] +[11:13:21.915] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:13:21.976] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🔔 Bude Putin otec evropské obrany? V Kodani panovala shoda, Äábel se ale opÄ›t zjevil v detailech: \n\nKOMENTÃŘ KARLA BARTÃKA | Vstoupí Vladimir Putin do dÄ›jin mimo jiné také jako „otec“ evropské obrany? JeÅ¡tÄ› donedávna bylo tohle téma horký brambor, kterému se politici kvůli potenciálním sporům radÄ›ji „diplomaticky“ vyhýbali. Dnes vÅ¡ak generuje stále vÄ›tší přízeň naprosté vÄ›tÅ¡iny zemí „sedmadvacítky“. VÄerejší (stÅ™eda 1. října 2025) neformální summit EU v Kodani ukazuje, že shoda je možná, ale že cesta k systému, kterému by se dalo říkat „spoleÄná evropská obrana“, je jeÅ¡tÄ› hodnÄ› daleká. A to navzdory bezprecedentní sérii ruských hybridních útoků posledních dní a týdnů, kterými Putin podle vÅ¡eho testuje pÅ™ipravenost starého kontinentu v dobÄ› ochabujících transatlantických vztahů. \nhttps://www.info.cz/zpravodajstvi-a-komentare/kodan-summit-evropska-obrana \n#CzechNews #News #Press #Media","created_at":1759417982,"id":"c6384653465ce793e7b55bd8f542b64d65515adbbe34b94d495a0833dbbce9e5","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"20449a4a7da03c1b5a7255eb8ef6cf77ba86e63f686f2d7798f0f3465ba71db3df7481079c113edd2cc09465c380b010e4d5c51f92faa777ae3bec1b3f483a0a","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[11:13:23.611] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Democrat Presidential Debate Video Resurfaces Showing All Nominees Supported Gov’t Healthcare For Illegals\n\nhttps://www.infowars.com/posts/democrat-presidential-debate-video-resurfaces-showing-all-nominees-supported-govt-healthcare-for-illegals/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759417992,"id":"35d01eb342577c58092166c37e8ea5df5aa7a1b2280cf7e69066dd46a7a0f16e","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"f7e07659ee30b99912ace7015307bf85c8db4c847e3e572eeb1bc6d37e31c00a32c6884fda508cf713a35dd99e21488ed84151920e3463086b895ea017b37e9c","tags":[]}] +[11:13:26.770] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"For the Sewer explorers Qshit 💩parasite community..\n#Monero with love\n\nQ💩\n https://image.nostr.build/ae79cb50a494b75768eec98d69001fdd117faecb7a5a58f9f50c7b7bc18c2b3f.png\n\n$XMR\n https://image.nostr.build/1a3621a2a91ed84cc2bf09786cafcde22e76f72a7abccd8b4ddaf11c480dde30.png","created_at":1759418006,"id":"5bd49bce8b43864b64e68d28fb57c4716178c2e7834ae1bed5af36e5c63f4edc","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"bd2a8212324cf3e6b175d4a8e30bd52f9b1e43f624355cd8caf7c3631ff6bd02bd82d0a42b96dea52a5da4733116e96a5150ee3f7f0c8e6688c2b0a48ff9c2b3","tags":[["t","monero"]]}] +[11:13:27.495] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i didnt realize what a horrible doctor i was\"\n\n\"sorry i didnt realize what a horrible scientist i was\"\n\nlol","created_at":1759418007,"id":"9b4687ff38c3930e52e0067219f3339a22aeeb2248230fac49315b8ac68364a8","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"04b08b8963f369fd47e4d7f99f092e4565286464595928c91ea80ba40a910255597e1ecd31b58637eb0ff581b95b0f728c5249873d3a2789339a99412a265eef","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","cec33f4392aa38fb03d91f7d16ebf40c7d6ba19c09d82eee716822249d2edbbf","","reply"]]}] +[11:13:31.713] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're going on the list too","created_at":1759418013,"id":"777adaf5a70cf6a07ea8e6732b5a2102217eac0f745e96ccdec9c49eb76d5b68","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"73fdc3f356ffd06c9c5b2d21b88f3bd198ca46132e42f46b74af7d53f20500b4555cf4bf9e12c8a2de066f0e6873558fa5c52096e8c446921cd3743361f78121","tags":[["alt","A short note: You're going on the list too"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","4a0a16006341734816a167a382e882f24ad8fcb045a959f5b77ff786670800c1","wss://theforest.nostr1.com/","reply","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"]]}] +[11:13:39.860] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€Tableauã®å„製å“ã‹ã‚‰dbt Semantic Layerã«æŽ¥ç¶šã—ã¦ã¿ãŸã€‘\nTableauã®å„製å“ã‹ã‚‰dbt Semantic Layerã«æŽ¥ç¶šã—ã¦ã¿ãŸ\nhttps://dev.classmethod.jp/articles/tableau-dbt-semantic-layer-connection/","created_at":1759418017,"id":"2344db6421caa779586e98b52143d9676b6d22bba8704bb86ced7803a8d74ac3","kind":1,"pubkey":"d735231e8eeb2d49becea0ebadf7cde4f81807ddc6d7389890f5b2067e099183","sig":"beaf497ab42a1fee7f283245020a0b1ee944de0100d4846d55b811cd88bd72670f04a55be204c9b9074fb86ac62560b4686d7dffc1d7a767a94d7cb5e67ef25e","tags":[["r","https://dev.classmethod.jp/articles/tableau-dbt-semantic-layer-connection/"],["proxy","https://dev.classmethod.jp/feed/#https://dev.classmethod.jp/articles/tableau-dbt-semantic-layer-connection/","rss"]]}] +[11:13:40.142] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"busting ass to stack more corn is honorable... who cares what the \"rule\" is... find someone who will pay you under the table, etc. \n\n","created_at":1759418018,"id":"4cbf0cfc7feef673a78fd98cba03025ab604fc6606f3fa7ecd3b059f266fdd95","kind":1,"pubkey":"3663a0e0adb2b3b173e673d613917f5dc2b21de321caea0dd1b28e96905df846","sig":"2af3fdba898d47586e5c44f1acd76846735caa24bd12229a9f9946dfe89cf0ab17e0284761f2547da0bba6427e2b7e1eb362eee2a3cb82b8f9050d2e16c8c13d","tags":[["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","wss://relay.primal.net"],["e","0e047cbd9e859b49423ab7d57917bb8db04f4c80b261072c1f9746210087b67c","wss://relay.primal.net","root","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309"]]}] +[11:13:42.146] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I'm sure that the FBI is looking into it.\nhttps://image.nostr.build/c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419.jpg","created_at":1759418022,"id":"c0404265fe3fe594c6466351bd938b4dbc34b06582d5b48ef4497699ee2183eb","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"25519839df1d7066dbbd8085231c3aff9ca3e9d669219184391f3074ec191b162fd57eceecd0e301a6e627d5d64c6a3954bb48a70b3c816c717b458562f27def","tags":[["alt","A short note: I'm sure that the FBI is looking into it.\nhttps://..."],["e","601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e","wss://relay.damus.io/","root","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","wss://relay.damus.io/"],["r","https://image.nostr.build/c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419.jpg"],["imeta","url https://image.nostr.build/c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419.jpg","x 4bccd336027019e1cd41010cdeb1c7963745b3ab329d8ac2ef96293a8c50567a","size 119746","m image/jpeg","dim 1079x1350","blurhash _CAm6sNKRjskA0%0xZ};j]t8oJbcV@oJ}=jZWYR*afWBfi^JoJt7R+bbj?s:-TaxoeWYa#oLjuRkWVWBR*s,WYR+RkWqaej?s,R+a#t6R+jZkBWBoMjZIqbHWCR*oKa|WB","ox c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419","alt "]]}] +[11:13:42.156] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:13:42.267] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:13:42.328] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:13:42.388] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:13:42.449] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:13:42.509] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:13:42.620] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"thanks Sofia, i follow you are stunning","created_at":1759418022,"id":"002ce73ee3fbca0d98f88408f466b3653be01cc32c36fae52b7094cd3def3175","kind":1,"pubkey":"e32d0eceb01c5598ada6e7fcddf1183f242a104fcf86edc5dd92853dabdb96c0","sig":"4b23e90eb35864f5921897d6eceffc13f8ea2ea3ed37ff7db0e61f4082bae653c98445ce6cd3595700e2f75207b1d4ce06c89d892cec9eb122bfa338bc198da5","tags":[["alt","A short note: thanks Sofia, i follow you are stunning"],["e","8ea6379ec1964c038a99bb2e9cdb91626792fc48163487cfdac49ae835e888e1","wss://relay.damus.io/","root","e32d0eceb01c5598ada6e7fcddf1183f242a104fcf86edc5dd92853dabdb96c0"],["e","e92848f90f91c0c3566722cfab8d3d2d5fe52fb98394f41d2e67bc1fff823f2a","wss://relay.damus.io/","reply","555db8757455d25088b6dfe27aaa9f2b5d3330fec0c10fd7e8f00caf9f6b3c01"],["p","555db8757455d25088b6dfe27aaa9f2b5d3330fec0c10fd7e8f00caf9f6b3c01","wss://nos.lol/"]]}] +[11:13:46.776] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The smart list?","created_at":1759418026,"id":"021cc7951e4c42362e19b87bc51ed24f329ec0953b18133f24eac8668d4d30a3","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"519f22003c43bce9598f2b57d670b34890227dd66f69b3d8ed8d5f9d88adda9f6b9661fbe8181d2f55d41247e3b1a2831c34f9cdab3d3951c52237c7f050a801","tags":[["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root"],["e","777adaf5a70cf6a07ea8e6732b5a2102217eac0f745e96ccdec9c49eb76d5b68","","reply"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"]]}] +[11:13:51.152] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:13:51.307] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"The smart list?","created_at":1759418026,"id":"021cc7951e4c42362e19b87bc51ed24f329ec0953b18133f24eac8668d4d30a3","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"519f22003c43bce9598f2b57d670b34890227dd66f69b3d8ed8d5f9d88adda9f6b9661fbe8181d2f55d41247e3b1a2831c34f9cdab3d3951c52237c7f050a801","tags":[["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root"],["e","777adaf5a70cf6a07ea8e6732b5a2102217eac0f745e96ccdec9c49eb76d5b68","","reply"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"]]}] +[11:13:51.367] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"thanks Sofia, i follow you are stunning","created_at":1759418022,"id":"002ce73ee3fbca0d98f88408f466b3653be01cc32c36fae52b7094cd3def3175","kind":1,"pubkey":"e32d0eceb01c5598ada6e7fcddf1183f242a104fcf86edc5dd92853dabdb96c0","sig":"4b23e90eb35864f5921897d6eceffc13f8ea2ea3ed37ff7db0e61f4082bae653c98445ce6cd3595700e2f75207b1d4ce06c89d892cec9eb122bfa338bc198da5","tags":[["alt","A short note: thanks Sofia, i follow you are stunning"],["e","8ea6379ec1964c038a99bb2e9cdb91626792fc48163487cfdac49ae835e888e1","wss://relay.damus.io/","root","e32d0eceb01c5598ada6e7fcddf1183f242a104fcf86edc5dd92853dabdb96c0"],["e","e92848f90f91c0c3566722cfab8d3d2d5fe52fb98394f41d2e67bc1fff823f2a","wss://relay.damus.io/","reply","555db8757455d25088b6dfe27aaa9f2b5d3330fec0c10fd7e8f00caf9f6b3c01"],["p","555db8757455d25088b6dfe27aaa9f2b5d3330fec0c10fd7e8f00caf9f6b3c01","wss://nos.lol/"]]}] +[11:13:51.538] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I'm sure that the FBI is looking into it.\nhttps://image.nostr.build/c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419.jpg","created_at":1759418022,"id":"c0404265fe3fe594c6466351bd938b4dbc34b06582d5b48ef4497699ee2183eb","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"25519839df1d7066dbbd8085231c3aff9ca3e9d669219184391f3074ec191b162fd57eceecd0e301a6e627d5d64c6a3954bb48a70b3c816c717b458562f27def","tags":[["alt","A short note: I'm sure that the FBI is looking into it.\nhttps://..."],["e","601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e","wss://relay.damus.io/","root","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","wss://relay.damus.io/"],["r","https://image.nostr.build/c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419.jpg"],["imeta","url https://image.nostr.build/c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419.jpg","x 4bccd336027019e1cd41010cdeb1c7963745b3ab329d8ac2ef96293a8c50567a","size 119746","m image/jpeg","dim 1079x1350","blurhash _CAm6sNKRjskA0%0xZ};j]t8oJbcV@oJ}=jZWYR*afWBfi^JoJt7R+bbj?s:-TaxoeWYa#oLjuRkWVWBR*s,WYR+RkWqaej?s,R+a#t6R+jZkBWBoMjZIqbHWCR*oKa|WB","ox c56f9c6408e8714dd7422c585b106892d9505d3e0702be6fcd8189442afa3419","alt "]]}] +[11:13:51.598] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"busting ass to stack more corn is honorable... who cares what the \"rule\" is... find someone who will pay you under the table, etc. \n\n","created_at":1759418018,"id":"4cbf0cfc7feef673a78fd98cba03025ab604fc6606f3fa7ecd3b059f266fdd95","kind":1,"pubkey":"3663a0e0adb2b3b173e673d613917f5dc2b21de321caea0dd1b28e96905df846","sig":"2af3fdba898d47586e5c44f1acd76846735caa24bd12229a9f9946dfe89cf0ab17e0284761f2547da0bba6427e2b7e1eb362eee2a3cb82b8f9050d2e16c8c13d","tags":[["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","wss://relay.primal.net"],["e","0e047cbd9e859b49423ab7d57917bb8db04f4c80b261072c1f9746210087b67c","wss://relay.primal.net","root","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309"]]}] +[11:13:51.659] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã€Tableauã®å„製å“ã‹ã‚‰dbt Semantic Layerã«æŽ¥ç¶šã—ã¦ã¿ãŸã€‘\nTableauã®å„製å“ã‹ã‚‰dbt Semantic Layerã«æŽ¥ç¶šã—ã¦ã¿ãŸ\nhttps://dev.classmethod.jp/articles/tableau-dbt-semantic-layer-connection/","created_at":1759418017,"id":"2344db6421caa779586e98b52143d9676b6d22bba8704bb86ced7803a8d74ac3","kind":1,"pubkey":"d735231e8eeb2d49becea0ebadf7cde4f81807ddc6d7389890f5b2067e099183","sig":"beaf497ab42a1fee7f283245020a0b1ee944de0100d4846d55b811cd88bd72670f04a55be204c9b9074fb86ac62560b4686d7dffc1d7a767a94d7cb5e67ef25e","tags":[["r","https://dev.classmethod.jp/articles/tableau-dbt-semantic-layer-connection/"],["proxy","https://dev.classmethod.jp/feed/#https://dev.classmethod.jp/articles/tableau-dbt-semantic-layer-connection/","rss"]]}] +[11:13:51.719] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're going on the list too","created_at":1759418013,"id":"777adaf5a70cf6a07ea8e6732b5a2102217eac0f745e96ccdec9c49eb76d5b68","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"73fdc3f356ffd06c9c5b2d21b88f3bd198ca46132e42f46b74af7d53f20500b4555cf4bf9e12c8a2de066f0e6873558fa5c52096e8c446921cd3743361f78121","tags":[["alt","A short note: You're going on the list too"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","4a0a16006341734816a167a382e882f24ad8fcb045a959f5b77ff786670800c1","wss://theforest.nostr1.com/","reply","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"]]}] +[11:13:51.788] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i didnt realize what a horrible doctor i was\"\n\n\"sorry i didnt realize what a horrible scientist i was\"\n\nlol","created_at":1759418007,"id":"9b4687ff38c3930e52e0067219f3339a22aeeb2248230fac49315b8ac68364a8","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"04b08b8963f369fd47e4d7f99f092e4565286464595928c91ea80ba40a910255597e1ecd31b58637eb0ff581b95b0f728c5249873d3a2789339a99412a265eef","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","cec33f4392aa38fb03d91f7d16ebf40c7d6ba19c09d82eee716822249d2edbbf","","reply"]]}] +[11:13:51.849] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"For the Sewer explorers Qshit 💩parasite community..\n#Monero with love\n\nQ💩\n https://image.nostr.build/ae79cb50a494b75768eec98d69001fdd117faecb7a5a58f9f50c7b7bc18c2b3f.png\n\n$XMR\n https://image.nostr.build/1a3621a2a91ed84cc2bf09786cafcde22e76f72a7abccd8b4ddaf11c480dde30.png","created_at":1759418006,"id":"5bd49bce8b43864b64e68d28fb57c4716178c2e7834ae1bed5af36e5c63f4edc","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"bd2a8212324cf3e6b175d4a8e30bd52f9b1e43f624355cd8caf7c3631ff6bd02bd82d0a42b96dea52a5da4733116e96a5150ee3f7f0c8e6688c2b0a48ff9c2b3","tags":[["t","monero"]]}] +[11:13:51.909] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Every time someone argues something and uses the term Nazi or Nazism as a pejorative to emphasize their argument, they come across as a complete idiot, and even if they are right, I find it hard to believe them because of the ignorance they have shown.\n\nYou didn't live during the Nazi era, neither did I, but I'm sure that whoever says this hasn't even spent 100 hours of their time studying World War II in depth.\n\nThe Nazis were bad, of course, like any government, they did bad things... of course, they dropped two nuclear bombs on civilians.\n\nBefore, the Japanese were very bad, and now they are very good. Have they changed so much?\n\nBefore, the Jews were very good, and now they are very bad.\n\nThink a little before you speak. Neither the bad guys are that bad nor the good guys that good.\n\nIf you're a Bitcoiner, don't use Nazism to strengthen your argument.\n\n\n","created_at":1759418000,"id":"f63a409062f780b64f2d9f561676c9c330bde00ae1f3feee43d592c36b929972","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"a3aa24aacd82d982715621d7c224d136395bf03a1da9107d1b2713d8d6715d3ad0adb7f73f03bddd0386657437a91b28de9013cb153d0598dea4c58b5bec6975","tags":[]}] +[11:13:51.970] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"See dog, zap dog. 💜ðŸ•","created_at":1759417994,"id":"11f8c7f8c3a8e0dc1a7d5f3a29364906c1b5d0e9a4cc47d3986b5c434d827156","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"0aedc1d30f42a6fc6bfd0917f7312f1fd107569f323dfca5b36a76c1294b15707047985e7701ae283b08296a9a7f307018dc3e1aaa6667e80cd5f01e93609c3a","tags":[["alt","A short note: See dog, zap dog. 💜ðŸ•"],["e","3d8371245b00b38b6ac7b863e6c74c07f33403ca1cec561f96dbb104718204db","wss://relay.damus.io/","root","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058"],["p","387fa328198e67a400caf00947cc91e0c166d24d71d8b4b78a6c3ef91ff4d058","wss://relay.damus.io/"]]}] +[11:13:52.030] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:13:52.091] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://image.nostr.build/f1b87dfa90d222de8fd1deba87fe151d1c4f860d8eb9f8aab4f570b009e7dac3.jpg nostr:note1vqd9wtc9mfh3eq2wvmjwrqtxf5w6g87rdcmlstt8jpdnllggzu0qwc6we4","created_at":1759418032,"id":"a414cd5f7e6f6c217cdf19854f1262fb9d1415c5f19595ff39b3ee55c9d0d739","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"557e1e8583a5a00b1a9e4c22af34b6e5054e41150aa70910a8487d6c02c3828183fd0307cff708accd26d603403e9acf64b6a5afcc17bad5371625d70049b0be","tags":[["q","601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","","mention"]]}] +[11:13:55.819] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"è¿™ç§è¥¿è—å¾’æ­¥çš„åº”è¯¥ä¸æ€Žä¹ˆæ´—澡å§","created_at":1759418034,"id":"2b0f14f1b0cb01d26295c6df73e3753d1d447da39a5bbd779127b763d19dba70","kind":1,"pubkey":"8e14131498c6cc263b8a78f4639328c825d394bc0ab8cc58d2e297652d6443ba","sig":"cbff9c61d17346a850ebcd79f8dc792307552077cd4566938fcfc3700e864a5288d9f5788a19a246c06b818c7065bf4c34eda8ce10fbfd629e7191b8bfcf0c7d","tags":[["e","7b7a17a096e7352716e16664c165a8730a253c0394e9674d3e67271617eb1550","","root"],["e","f3c1f76f63eee73617d23fb87c118a297691c0c20bd961708d371de4de7a2bab"],["e","5800891970a909faf86334b3d4de78752376f1b5dc99b8194badb7084afe5923","","reply"],["p","6d088b653a1bffe728b9b17e5c7afcfc18d85f70502feac83400524eb6a8d5e9"],["p","8925425a9130192b987239987433a6998f4557359a404b5a41940aa070dddd1c"],["p","81913081246d192c9a55951704270756b222094470b3171e58bb5e3c42ee8db5"],["p","db11b32009d914dd76bd904b8a636627d1d9043f2a4f9ecaf6aaf85d05c5f7af"]]}] +[11:13:55.990] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I would rather be good at being cool on nostr like you are than this. Wanna swap? 😂","created_at":1759418036,"id":"79c0dd087980ba5a631ee135675cfbeaa1d75d4212b49a5e3535e9ec6c917780","kind":1,"pubkey":"4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","sig":"e35a2592230f5ab44def7280cfd6c35b139294f03b19a1567b1c0c0ce11b0c5dd5231faf8a121a6f8f3058d35ed456d1195dac1860da12323afbf09dbabe11d4","tags":[["alt","A short note: I would rather be good at being cool on nostr like..."],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://nostr.wine/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","wss://nostr.data.haus/","reply","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:13:59.704] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"On vacation with the family.\n\nPURA VIDA 🤙☀ï¸ðŸŒ´\n\nhttps://aegis.relayted.de/eefaa776d232e29c66e7112e669fff2bb5ab2c09cc4381a3942dae216e1c06e9.jpg\n\n","created_at":1759418041,"id":"11b3b1aa910b7982fa13d089a848b85048d7d6cfba518167cd59abed45683909","kind":1,"pubkey":"debb5efe07ed33407b6eae923cba201aaf8d4afb71a3152de9ae932ee655ce2e","sig":"8dacac27d1c90d95cb1fc2d4a07384af39b60632152e8a206e8f8305e6ae80aac60f59a87c4b180fe4865b4c00d39ed03f47d18dafd5c6a8394e47f6b1444b9a","tags":[["r","https://aegis.relayted.de/eefaa776d232e29c66e7112e669fff2bb5ab2c09cc4381a3942dae216e1c06e9.jpg"]]}] +[11:13:59.876] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://i.nostr.build/CALI2IyE1OKzrwGF.jpg\nIf you want to boost your engagement on Nostr the best thing you can do is have an avatar with zoomer broccoli hair. Your follower count will go nuts. \n\nThanks for coming to my TED talk.","created_at":1759418037,"id":"098fda37d21cf63d3f0027f80ff8cd1d6608d31d20f7bda02764dd20223f7b7d","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"adbce4ed281c2ba4603497d71460000c13eb5843d849934ff6f6b0f01519f34224afab31885977c177c815fecff58cb7447745e50f23a6b26f8d93714525acf9","tags":[["alt","A short note: https://i.nostr.build/CALI2IyE1OKzrwGF.jpg\nIf you ..."],["r","https://i.nostr.build/CALI2IyE1OKzrwGF.jpg"],["imeta","url https://i.nostr.build/CALI2IyE1OKzrwGF.jpg","x 33af02d317f702bb91bf4056cc3de05201df48ece3ae3f928919418d9ed83ea8","size 60215","m image/jpeg","dim 1280x800","blurhash rUE+[*EeEyOXn%wfNuW;jZNG,@W=S4j?S2W;j[jY5+,@s.aebHSfjsn*j[}ZACS1bHjYxGjZWVj[ACkCw{sAW;azoLayjtAWofsosVjtWVj[jua|","ox 33af02d317f702bb91bf4056cc3de05201df48ece3ae3f928919418d9ed83ea8","alt "]]}] +[11:14:02.100] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¡ã‚‡ã£ã¨ç›´æŽ¥è²¼ã‚‹ã«ã¯å®¹é‡ãŒ\nhttps://sora.chatgpt.com/p/s_68de8ccb429c8191941651cf3f062be5","created_at":1759418041,"id":"235993925b6f36138bf90dfe0efa6b513dee198974381da309aa26691398c25e","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"34496dfb00ef4b20647160768763865828ba2f7f3be42dcbe2742ac74d1abafab21e83898d204d03c1947bfb6b548522b436ebc23ee57190f976a3788562638c","tags":[]}] +[11:14:02.382] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Não ter nada e ser feliz? Kkkk","created_at":1759418041,"id":"cd964c98f6177e39f753679cabaac9893036833479d1ca3544c481e02dc16f8d","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"99f88bc2fa0e106326edc5202dc400c2b1785261e1df4a27d04d042539f3e818b13495d1daa025f2126d9ea9cee32367f5bd39c7d03ad656a2d54ec482c47fc5","tags":[["e","e38a065af08b422c1eb1f23c8f9196e989eded6619a27e1a32d3f581c463895f","wss://a.nos.lol","root"],["p","38abc08e19dc1355e0cd9a70702b30b4748a0ff90075b7173dfae6ab6d8709a5","","mention"],["p","ecbb3ac538fffa6c50e5973f0387292bf08693af0bf3389ef4a27bfaaa7f4587","","mention"]]}] +[11:14:03.217] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"@nostr:nevent1qqszz2cxf0d7gtspy0zutvcp44xx4puyk5v757srz85ur3f3k7g8qfgpzemhxue69uhhwmm59ehx7um5wgh8qctjw3uj7q3qhmqvn57wfm7qcygkt4et3qffhvdwyer9mkz0lyzjwr29438fe55sxpqqqqqqz8hx93s","created_at":1759418042,"id":"8e50af6ded6886ab021db851a3c843e153dc5a2fc9bcd342b4231476d0f98452","kind":1,"pubkey":"bec0c9d3ce4efc0c11165d72b88129bb1ae26465dd84ff905270d45ac4e9cd29","sig":"c41822a81de7877f48d516a2120e1ae0a6cfa44b8453c90aca9a9b7aeaee5ceac291f179888bdcb6ce19367049748cf86369381e114f50e6d731cbe9fde6acd8","tags":[["e","0c525cde808b041aab8aee760b8f160e8f2f037a78ce3b05ee50ffdd4b52d914","","root"],["p","bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a"],["p","fba1bbd8ab57f258673157defd5afc9ceda004c6845f99db3169fe4b61ba7416"],["p","90cf043861e5b5a9972cb7b529a5ba71b215d6d1e314c749d5526ec133f1db73"],["p","02a022d4bab25a352d4b08104d670c1c906c72ee48b03394eef7688754645aad"],["p","b80cc5f287e92e74cf40d0891fbd0c49580dd51843d1fdd8e7f8d502966b8353"],["p","bec0c9d3ce4efc0c11165d72b88129bb1ae26465dd84ff905270d45ac4e9cd29"]]}] +[11:14:03.278] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"PS: GM! ðŸ¥â˜•","created_at":1759418043,"id":"de170724f4e5c3ff950c876d93d46d1ace5874f2fee66c0c30aa49610c45692e","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"e02718cf7dc3bba0684849e5891b3ebf1e97939d0aef53b04c3ca7019bd078ce94ed746e37d38f8c58bef5a3238d2ef7433cffe508a60e625f5ab90b32c7423d","tags":[["alt","A short note: PS: GM! ðŸ¥â˜•"],["e","601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e","wss://relay.damus.io/","root","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","wss://relay.damus.io/"]]}] +[11:14:04.786] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Badass.","created_at":1759418044,"id":"b74bc4c81ca586033421b99063df9e7335854a4fd4e43d4d18ad5eb59b5dce08","kind":1,"pubkey":"08bfc00b7f72e015f45c326f486bec16e4d5236b70e44543f1c5e86a8e21c76a","sig":"994594acc0d2e36e50baa445fcfbc240588db6d71490338b9e08344fa636bc3d55e8b1d9e8351195c064f7ffeddfa88bc7dcbf935a90b97cb3dd2c9a46cadd53","tags":[["alt","A short note: Badass."],["e","14816e88b5f333a63866c4928f8319fc95ddfb92958d2d9782c6e93a4e83ddca","wss://premium.primal.net/","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","wss://relay.snort.social:57/"]]}] +[11:14:09.385] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Preach. And welcome to nostr.","created_at":1759418047,"id":"8a07906a8b9c8cb63a031c2ca32cfa6c40752aa9ace8ef1d087803bbb34b22a5","kind":1,"pubkey":"c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86","sig":"cafd65c3b95962b4dd9703383aa43e5a7ffea4a99c879d5cc6541750eb3c9cc56cd4b747a8488834b7df5515888151765e0352693d10ac349243861377bed8b7","tags":[["e","feb75a8c7061ac0fc672729773f4577a312ad8b5ab37c72d5ae0cd7b42dfadbd","wss://relay.primal.net","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["r","wss://relay.bitcoinpark.com/"],["r","wss://relay.shawnyeager.com/chat"],["r","wss://relay.shawnyeager.com/inbox"],["r","wss://relay.shawnyeager.com/outbox"],["r","wss://relay.shawnyeager.com/private"],["r","wss://wot.nostr.party/"]]}] +[11:14:12.155] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:14:12.266] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:14:12.326] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:14:12.387] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:14:12.448] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:14:12.508] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:14:15.318] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"HUNGERGER🤪😂\n\n#memestr #memes #food #foodstr #nostr #grownostr\n\nhttps://image.nostr.build/1006fde8dfe4e878cc3ceae759133b0591cefb827eb5f618837cfb87374b8ccf.jpg","created_at":1759418055,"id":"54645fb01a78124a2a8b1dbed143fa21619e3e2e8f95547c3e3a4247edf291ee","kind":1,"pubkey":"8bff47a4f1df3828acc1ce7e29f056f41350e9d66e94af7c5ebb4f18ef3c8060","sig":"c3b475746140953c0c967e540b230e67c72c29fd7487276423179bcac94d9a38e4cfe9bc3177982ca82fd408bba9bc5dd3414f28a8430108fb978660b767385f","tags":[["imeta","url https://image.nostr.build/1006fde8dfe4e878cc3ceae759133b0591cefb827eb5f618837cfb87374b8ccf.jpg","blurhash eaEe;*odNIayWDRmj@t5azaz0QWXt4juodx;WENIoLay$~azj@oKWD","dim 500x500"],["t","memestr"],["t","memestr"],["t","food"],["t","foodstr"],["t","nostr"],["t","grownostr"],["r","https://image.nostr.build/1006fde8dfe4e878cc3ceae759133b0591cefb827eb5f618837cfb87374b8ccf.jpg"]]}] +[11:14:18.732] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🟥SELL BTC for XMR\nPrice: 0.00284713BTC (2%)\nBTC: 0.02 - 0.03\nXMR: 7.02461777 - 10.53692665\nMethod: Altcoins Instant\nCreated: 2025-10-02T15:13:42Z","created_at":1759418058,"id":"495f5b062677e589d4cf0bd04009f8661970ceef78ec856b40584bb95c0be333","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"68931130c2b6bfb3b118715f4c6a8db6af3b6cc1f2d47007a5dff57eef33253efb516505ce29800f036e170d4b49bf45015df02559278c749b1fac70ae2214b7","tags":[]}] +[11:14:20.563] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i was such a shitty lover and called that sex\"\n\nlol\n\n\"sorry i treated you like you were fucking nothing at all.\"\n\nlol","created_at":1759418060,"id":"f4ec008b552de10e749b01005ad1633e013a20b85f58bfb085254ac6b8708c10","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"7eb89d8d438c83849d79d9021f99e935cf483c3ffb52e76e1aa7672de0f50672eb7b0a46c1ea8d207e2aa4a561705c8ce7593e50bebcbd14b86834f8b8e26f51","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","9b4687ff38c3930e52e0067219f3339a22aeeb2248230fac49315b8ac68364a8","","reply"]]}] +[11:14:20.956] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqszfeerq6v0md7pykuahrpsf472w20u3476tanr759f4rn2kauqjyqpr4mhxue69uhhyetvv9ujucn4d3kxjumgvfhh2mn50yhxxmmdqyjhwumn8ghj7en9v4j8xtnwdaehgu3wvfskuep0dakku62ltamx2mn5w4ex2ucpr4mhxue69uhkummnw3ezumn9d9kxzmr90pskuer9wghxgetk4xzsx0 lower 8000","created_at":1759418060,"id":"37cd4c99419f8754a3d7816c8b859cf9184f4803cc5e8bcd487c5433b7906b3a","kind":1,"pubkey":"a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92","sig":"e23f357244a8211b4b445d0a631976c6531e58cad76b6a0bbc438b76cd04a52e9f2984fa8b1ce26fff714f823d81dc4dc63c5ade542d7516292c58043f0709e3","tags":[["e","70b916484e308d23f181a470ca34e0c42ae8f39433723e609dc9e7ca7a8ad59f","","root"],["e","7616ffb694691175d342470f7289182f31e7ba4302742126e74db9f52c4a113d","","reply"],["p","24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","","mention"],["p","a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92"]]}] +[11:14:21.127] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:14:21.279] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqszfeerq6v0md7pykuahrpsf472w20u3476tanr759f4rn2kauqjyqpr4mhxue69uhhyetvv9ujucn4d3kxjumgvfhh2mn50yhxxmmdqyjhwumn8ghj7en9v4j8xtnwdaehgu3wvfskuep0dakku62ltamx2mn5w4ex2ucpr4mhxue69uhkummnw3ezumn9d9kxzmr90pskuer9wghxgetk4xzsx0 lower 8000","created_at":1759418060,"id":"37cd4c99419f8754a3d7816c8b859cf9184f4803cc5e8bcd487c5433b7906b3a","kind":1,"pubkey":"a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92","sig":"e23f357244a8211b4b445d0a631976c6531e58cad76b6a0bbc438b76cd04a52e9f2984fa8b1ce26fff714f823d81dc4dc63c5ade542d7516292c58043f0709e3","tags":[["e","70b916484e308d23f181a470ca34e0c42ae8f39433723e609dc9e7ca7a8ad59f","","root"],["e","7616ffb694691175d342470f7289182f31e7ba4302742126e74db9f52c4a113d","","reply"],["p","24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","","mention"],["p","a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92"]]}] +[11:14:21.340] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i was such a shitty lover and called that sex\"\n\nlol\n\n\"sorry i treated you like you were fucking nothing at all.\"\n\nlol","created_at":1759418060,"id":"f4ec008b552de10e749b01005ad1633e013a20b85f58bfb085254ac6b8708c10","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"7eb89d8d438c83849d79d9021f99e935cf483c3ffb52e76e1aa7672de0f50672eb7b0a46c1ea8d207e2aa4a561705c8ce7593e50bebcbd14b86834f8b8e26f51","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","9b4687ff38c3930e52e0067219f3339a22aeeb2248230fac49315b8ac68364a8","","reply"]]}] +[11:14:21.401] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🟥SELL BTC for XMR\nPrice: 0.00284713BTC (2%)\nBTC: 0.02 - 0.03\nXMR: 7.02461777 - 10.53692665\nMethod: Altcoins Instant\nCreated: 2025-10-02T15:13:42Z","created_at":1759418058,"id":"495f5b062677e589d4cf0bd04009f8661970ceef78ec856b40584bb95c0be333","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"68931130c2b6bfb3b118715f4c6a8db6af3b6cc1f2d47007a5dff57eef33253efb516505ce29800f036e170d4b49bf45015df02559278c749b1fac70ae2214b7","tags":[]}] +[11:14:21.461] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"HUNGERGER🤪😂\n\n#memestr #memes #food #foodstr #nostr #grownostr\n\nhttps://image.nostr.build/1006fde8dfe4e878cc3ceae759133b0591cefb827eb5f618837cfb87374b8ccf.jpg","created_at":1759418055,"id":"54645fb01a78124a2a8b1dbed143fa21619e3e2e8f95547c3e3a4247edf291ee","kind":1,"pubkey":"8bff47a4f1df3828acc1ce7e29f056f41350e9d66e94af7c5ebb4f18ef3c8060","sig":"c3b475746140953c0c967e540b230e67c72c29fd7487276423179bcac94d9a38e4cfe9bc3177982ca82fd408bba9bc5dd3414f28a8430108fb978660b767385f","tags":[["imeta","url https://image.nostr.build/1006fde8dfe4e878cc3ceae759133b0591cefb827eb5f618837cfb87374b8ccf.jpg","blurhash eaEe;*odNIayWDRmj@t5azaz0QWXt4juodx;WENIoLay$~azj@oKWD","dim 500x500"],["t","memestr"],["t","memestr"],["t","food"],["t","foodstr"],["t","nostr"],["t","grownostr"],["r","https://image.nostr.build/1006fde8dfe4e878cc3ceae759133b0591cefb827eb5f618837cfb87374b8ccf.jpg"]]}] +[11:14:21.522] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Preach. And welcome to nostr.","created_at":1759418047,"id":"8a07906a8b9c8cb63a031c2ca32cfa6c40752aa9ace8ef1d087803bbb34b22a5","kind":1,"pubkey":"c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86","sig":"cafd65c3b95962b4dd9703383aa43e5a7ffea4a99c879d5cc6541750eb3c9cc56cd4b747a8488834b7df5515888151765e0352693d10ac349243861377bed8b7","tags":[["e","feb75a8c7061ac0fc672729773f4577a312ad8b5ab37c72d5ae0cd7b42dfadbd","wss://relay.primal.net","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["r","wss://relay.bitcoinpark.com/"],["r","wss://relay.shawnyeager.com/chat"],["r","wss://relay.shawnyeager.com/inbox"],["r","wss://relay.shawnyeager.com/outbox"],["r","wss://relay.shawnyeager.com/private"],["r","wss://wot.nostr.party/"]]}] +[11:14:21.582] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Badass.","created_at":1759418044,"id":"b74bc4c81ca586033421b99063df9e7335854a4fd4e43d4d18ad5eb59b5dce08","kind":1,"pubkey":"08bfc00b7f72e015f45c326f486bec16e4d5236b70e44543f1c5e86a8e21c76a","sig":"994594acc0d2e36e50baa445fcfbc240588db6d71490338b9e08344fa636bc3d55e8b1d9e8351195c064f7ffeddfa88bc7dcbf935a90b97cb3dd2c9a46cadd53","tags":[["alt","A short note: Badass."],["e","14816e88b5f333a63866c4928f8319fc95ddfb92958d2d9782c6e93a4e83ddca","wss://premium.primal.net/","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","wss://relay.snort.social:57/"]]}] +[11:14:21.643] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"PS: GM! ðŸ¥â˜•","created_at":1759418043,"id":"de170724f4e5c3ff950c876d93d46d1ace5874f2fee66c0c30aa49610c45692e","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"e02718cf7dc3bba0684849e5891b3ebf1e97939d0aef53b04c3ca7019bd078ce94ed746e37d38f8c58bef5a3238d2ef7433cffe508a60e625f5ab90b32c7423d","tags":[["alt","A short note: PS: GM! ðŸ¥â˜•"],["e","601a572f05da6f1c814e66e4e181664d1da41fc36e37f82d67905b3ffd08171e","wss://relay.damus.io/","root","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","wss://relay.damus.io/"]]}] +[11:14:21.703] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"@nostr:nevent1qqszz2cxf0d7gtspy0zutvcp44xx4puyk5v757srz85ur3f3k7g8qfgpzemhxue69uhhwmm59ehx7um5wgh8qctjw3uj7q3qhmqvn57wfm7qcygkt4et3qffhvdwyer9mkz0lyzjwr29438fe55sxpqqqqqqz8hx93s","created_at":1759418042,"id":"8e50af6ded6886ab021db851a3c843e153dc5a2fc9bcd342b4231476d0f98452","kind":1,"pubkey":"bec0c9d3ce4efc0c11165d72b88129bb1ae26465dd84ff905270d45ac4e9cd29","sig":"c41822a81de7877f48d516a2120e1ae0a6cfa44b8453c90aca9a9b7aeaee5ceac291f179888bdcb6ce19367049748cf86369381e114f50e6d731cbe9fde6acd8","tags":[["e","0c525cde808b041aab8aee760b8f160e8f2f037a78ce3b05ee50ffdd4b52d914","","root"],["p","bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a"],["p","fba1bbd8ab57f258673157defd5afc9ceda004c6845f99db3169fe4b61ba7416"],["p","90cf043861e5b5a9972cb7b529a5ba71b215d6d1e314c749d5526ec133f1db73"],["p","02a022d4bab25a352d4b08104d670c1c906c72ee48b03394eef7688754645aad"],["p","b80cc5f287e92e74cf40d0891fbd0c49580dd51843d1fdd8e7f8d502966b8353"],["p","bec0c9d3ce4efc0c11165d72b88129bb1ae26465dd84ff905270d45ac4e9cd29"]]}] +[11:14:21.798] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Não ter nada e ser feliz? Kkkk","created_at":1759418041,"id":"cd964c98f6177e39f753679cabaac9893036833479d1ca3544c481e02dc16f8d","kind":1,"pubkey":"76f523f28a243b1c4f203b649cda166ff4adb11261c1f9d607aa39280af3422b","sig":"99f88bc2fa0e106326edc5202dc400c2b1785261e1df4a27d04d042539f3e818b13495d1daa025f2126d9ea9cee32367f5bd39c7d03ad656a2d54ec482c47fc5","tags":[["e","e38a065af08b422c1eb1f23c8f9196e989eded6619a27e1a32d3f581c463895f","wss://a.nos.lol","root"],["p","38abc08e19dc1355e0cd9a70702b30b4748a0ff90075b7173dfae6ab6d8709a5","","mention"],["p","ecbb3ac538fffa6c50e5973f0387292bf08693af0bf3389ef4a27bfaaa7f4587","","mention"]]}] +[11:14:21.859] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¡ã‚‡ã£ã¨ç›´æŽ¥è²¼ã‚‹ã«ã¯å®¹é‡ãŒ\nhttps://sora.chatgpt.com/p/s_68de8ccb429c8191941651cf3f062be5","created_at":1759418041,"id":"235993925b6f36138bf90dfe0efa6b513dee198974381da309aa26691398c25e","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"34496dfb00ef4b20647160768763865828ba2f7f3be42dcbe2742ac74d1abafab21e83898d204d03c1947bfb6b548522b436ebc23ee57190f976a3788562638c","tags":[]}] +[11:14:21.919] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:14:22.644] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Trump Must Repeal Biden-Era Forced Medical Experiment Approval\n\nhttps://www.infowars.com/posts/trump-must-repeal-biden-era-forced-medical-experiment-fda-regulation/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759418052,"id":"82f8ecbeed2ed6fe15ff5198e1ca9832b007080ff19ca26b466f482ecc574710","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"fe91eafcc5e47cfdd1d5d1ac99525370351a55e8786366dacb97f9f7e072d6747b93f5ba57d9cb40bafdbb9a220e6c9fd474931b3376bd8469eb318fd11d94e7","tags":[]}] +[11:14:24.698] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"📈 Bitcoin is going LOWER!\nID: cmg9k36j500034hjv9yf0m4c2 created\n\nZAP âš¡ï¸ this note (100-20.000) to bet.\nSee BitBetBot profile for more detailed instructions.","created_at":1759418063,"id":"636f51e38a86e75a0f183ddedc8aa97cfa605e2c2eb06f018ea9cff751cd0a6c","kind":1,"pubkey":"24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","sig":"06517fe1a3d79e1b4e013fdc07384a363066a5ee87760bf2716841be38f8cd2e7574a3dcb4e5eafe55bfba3358b2fb2c9151557cb064c7314a1be2642982170a","tags":[["e","37cd4c99419f8754a3d7816c8b859cf9184f4803cc5e8bcd487c5433b7906b3a","wss://relay.primal.net","root"],["p","a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92","","mention"],["p","24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","","mention"]]}] +[11:14:31.070] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#NostrBestDogs \n \n#dogstr #dog #Nostr #bestfren","created_at":1759418070,"id":"f8cd99b67df5e5508007a0b6cfbc4ecd615a395f396b5ff73852c5536115b1bc","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"47c494ebb9c75f7a8d69347f90cb3e84f9609c970cc22297c587e8fe8a1a4412e2d83b01f0e5e8059de12281940cc9a66702c9397a06b906057c9da275c0d4c8","tags":[]}] +[11:14:34.350] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're making it worse","created_at":1759418076,"id":"8fb4f6273365e1edaec1095f3664b76a7ca3c620b236a2867c7345adadf5ac14","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"2908ec3f6ab5b25e9eecf0a2c87cd5c1c01a6ab7dc076daaf20593e0ab87f50330d46dc3b4e32580a8b411d3339ef32b8adeb2b437daed1d220e6e12533ede6a","tags":[["alt","A short note: You're making it worse"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","79c0dd087980ba5a631ee135675cfbeaa1d75d4212b49a5e3535e9ec6c917780","wss://theforest.nostr1.com/","reply","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:14:38.064] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I wish Nick Szabo were using Nostr... \n\n","created_at":1759418072,"id":"5b2226dffa477d75a1d898c0660bf46b9cc212681af36c20f12683824d458827","kind":1,"pubkey":"8f474abb70c3987ff7e93fdd9e01cbade2dad5a8b3469fa1aba299823a1cee89","sig":"470620f16a1bb0a7040a1f1a3f2a23ea7e03192faa455bc90151c9755208f14847314d7c2943d4caabf461f76069b914a30892b7d8a69378ae9f81115cb6e3f8","tags":[["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["e","e19f0ee923e19a26284490dcf4ffb0d22c67a9dc85f73c6320f03474ef1bce95","","root","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"]]}] +[11:14:42.161] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:14:42.272] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:14:42.332] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:14:42.393] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:14:42.453] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:14:42.514] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:14:44.556] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"目薬農家ã®ä½ã€…木ã•ã‚“\nnostr:nevent1qvzqqqqqqypzpq4np5cygstsu65vsx0ggphrv23kj4z553sh39xwyur08pqvdsqrqyxhwumn8ghj77tpvf6jumt9qyd8wumn8ghj7mnjv4kxz7fwvvkhxar9d3kxzu3wdejhgqfqwaehxw309aex2mrp0ykk5upwdehhxarj9emkjun9v3hx2apwdfcqzrthwden5te0dehhxtnvdakqz9nhwden5te0wfjkccte9ehx7um5wghxyctwvsq3yamnwvaz7tmndehhwenvv9ex2tnrvvqzqg6ejwf9kmekzw9ljr07pmaxk5faacvcjapcrk3sn23xdyfe3sj7c9pcgn","created_at":1759418083,"id":"b29415ef48273631c68fec50ba2dcd84acf2f01bec1ccd3f446097d483e9f332","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"930c69e7e567d7ad9f2099925dbfeafdc0bfb9c7b6c807fff0a3d90d36c04f88f9c786174e30a401ec9547f89b63b34729efaa2615394cdef13bb0f5980dd84e","tags":[["q","235993925b6f36138bf90dfe0efa6b513dee198974381da309aa26691398c25e","wss://yabu.me"]]}] +[11:14:48.092] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"στÏουθοκάμηλος η φάλαινα 🤔ðŸ˜\nhttps://i.nostr.build/6pt9i2qTiqOxR9qj.jpg\n#sketchGAR #kidstr #sketch #kidsart #nostrart #nostrkid","created_at":1759418087,"id":"6557142addf081e6927f1da414efb74eb5100ed2d8ede11306cebe2bbaeef14e","kind":1,"pubkey":"9624cd2021bdeaa86a4443bbcfe1aa688bb775d63c0f54a057de631353882db0","sig":"434e0833286fd64b5af37bb0c13d573d11464788c3f0ff2334c8a29906cdd32d68b49f33225b772686ddd61772cc480e73ca1c10e2f121b885f107542a6a4ae2","tags":[["alt","A short note: στÏουθοκάμηλος η φάλαινα 🤔ðŸ˜\nhttps://i.nostr.buil..."],["t","sketchGAR"],["t","sketchgar"],["t","kidstr"],["t","sketch"],["t","kidsart"],["t","nostrart"],["t","nostrkid"],["r","https://i.nostr.build/6pt9i2qTiqOxR9qj.jpg"]]}] +[11:14:49.259] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Sats found by a human, using proof of work ðŸ™ðŸ¼ðŸ˜Š\n\nThank you nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe and nostr:nprofile1qqsfp8h6venm9p387yrhvn8rc2yft3r0llgczxm5zhw2kql533ztt9cprpmhxw309akk7mnpvshx5c34x5hxxmmd8gurqwpsqy2hwumn8ghj7etyv4hzumn0wd68ytnvv9hxgejs97p, I always love listening to Uncle! Thank you for being a calm voice in all these Bitcoin wars and arguments! \n\n","created_at":1759418088,"id":"b8349e09c3a7ef81a2351a304c4b2facf50fc402d89e3a2c8625f545e6eb88c1","kind":1,"pubkey":"6447b91ed1f2f782e150cf90318b22457e1dddacc1b290b63f3cc883fe5cf359","sig":"c2e7839d2462cb53f49d85279bdeab1b76a3e5385ee33d6e78d11ceed05d48183a7684f6d1e2567ab779620286d142ec21d7d39e4deedd778d170f6559e8c2c3","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","909efa6667b28627f107764ce3c28895c46fffd1811b7415dcab03f48c44b597","ws://monad.jb55.com:8080","mention"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","909efa6667b28627f107764ce3c28895c46fffd1811b7415dcab03f48c44b597","wss://relay.snort.social:57"],["e","a015ffafe7a409f8e6aa401b86798edd6436fae9504b07d7f7c30a252b84fcb0","wss://relay.snort.social:57","root","909efa6667b28627f107764ce3c28895c46fffd1811b7415dcab03f48c44b597"]]}] +[11:14:51.200] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:14:51.533] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Remember Nextel? ","created_at":1759418090,"id":"528126753075c11aa6fff611f1338f94b9a7d7ca81f877ea52beb710fe51a075","kind":1,"pubkey":"2f29aa33c2a3b45c2ef32212879248b2f4a49a002bd0de0fa16c94e138ac6f13","sig":"f3183067cbde126bb94ed65bb26d911b1ec01a05cf37565aa9e6e5decdc98f448b84cf69f2518a00c1e6baccbf23bb0630161e9a7fc9482155adca9c02988c80","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://bitcoiner.social","root"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","","mention"]]}] +[11:14:51.656] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Remember Nextel? ","created_at":1759418090,"id":"528126753075c11aa6fff611f1338f94b9a7d7ca81f877ea52beb710fe51a075","kind":1,"pubkey":"2f29aa33c2a3b45c2ef32212879248b2f4a49a002bd0de0fa16c94e138ac6f13","sig":"f3183067cbde126bb94ed65bb26d911b1ec01a05cf37565aa9e6e5decdc98f448b84cf69f2518a00c1e6baccbf23bb0630161e9a7fc9482155adca9c02988c80","tags":[["e","2e31a8079612156795683b6a071d622753b4dd545576de47b0fa9f78ceb5f994","wss://bitcoiner.social","root"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","","mention"]]}] +[11:14:51.716] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Sats found by a human, using proof of work ðŸ™ðŸ¼ðŸ˜Š\n\nThank you nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe and nostr:nprofile1qqsfp8h6venm9p387yrhvn8rc2yft3r0llgczxm5zhw2kql533ztt9cprpmhxw309akk7mnpvshx5c34x5hxxmmd8gurqwpsqy2hwumn8ghj7etyv4hzumn0wd68ytnvv9hxgejs97p, I always love listening to Uncle! Thank you for being a calm voice in all these Bitcoin wars and arguments! \n\n","created_at":1759418088,"id":"b8349e09c3a7ef81a2351a304c4b2facf50fc402d89e3a2c8625f545e6eb88c1","kind":1,"pubkey":"6447b91ed1f2f782e150cf90318b22457e1dddacc1b290b63f3cc883fe5cf359","sig":"c2e7839d2462cb53f49d85279bdeab1b76a3e5385ee33d6e78d11ceed05d48183a7684f6d1e2567ab779620286d142ec21d7d39e4deedd778d170f6559e8c2c3","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","909efa6667b28627f107764ce3c28895c46fffd1811b7415dcab03f48c44b597","ws://monad.jb55.com:8080","mention"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","909efa6667b28627f107764ce3c28895c46fffd1811b7415dcab03f48c44b597","wss://relay.snort.social:57"],["e","a015ffafe7a409f8e6aa401b86798edd6436fae9504b07d7f7c30a252b84fcb0","wss://relay.snort.social:57","root","909efa6667b28627f107764ce3c28895c46fffd1811b7415dcab03f48c44b597"]]}] +[11:14:51.777] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"στÏουθοκάμηλος η φάλαινα 🤔ðŸ˜\nhttps://i.nostr.build/6pt9i2qTiqOxR9qj.jpg\n#sketchGAR #kidstr #sketch #kidsart #nostrart #nostrkid","created_at":1759418087,"id":"6557142addf081e6927f1da414efb74eb5100ed2d8ede11306cebe2bbaeef14e","kind":1,"pubkey":"9624cd2021bdeaa86a4443bbcfe1aa688bb775d63c0f54a057de631353882db0","sig":"434e0833286fd64b5af37bb0c13d573d11464788c3f0ff2334c8a29906cdd32d68b49f33225b772686ddd61772cc480e73ca1c10e2f121b885f107542a6a4ae2","tags":[["alt","A short note: στÏουθοκάμηλος η φάλαινα 🤔ðŸ˜\nhttps://i.nostr.buil..."],["t","sketchGAR"],["t","sketchgar"],["t","kidstr"],["t","sketch"],["t","kidsart"],["t","nostrart"],["t","nostrkid"],["r","https://i.nostr.build/6pt9i2qTiqOxR9qj.jpg"]]}] +[11:14:51.837] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"目薬農家ã®ä½ã€…木ã•ã‚“\nnostr:nevent1qvzqqqqqqypzpq4np5cygstsu65vsx0ggphrv23kj4z553sh39xwyur08pqvdsqrqyxhwumn8ghj77tpvf6jumt9qyd8wumn8ghj7mnjv4kxz7fwvvkhxar9d3kxzu3wdejhgqfqwaehxw309aex2mrp0ykk5upwdehhxarj9emkjun9v3hx2apwdfcqzrthwden5te0dehhxtnvdakqz9nhwden5te0wfjkccte9ehx7um5wghxyctwvsq3yamnwvaz7tmndehhwenvv9ex2tnrvvqzqg6ejwf9kmekzw9ljr07pmaxk5faacvcjapcrk3sn23xdyfe3sj7c9pcgn","created_at":1759418083,"id":"b29415ef48273631c68fec50ba2dcd84acf2f01bec1ccd3f446097d483e9f332","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"930c69e7e567d7ad9f2099925dbfeafdc0bfb9c7b6c807fff0a3d90d36c04f88f9c786174e30a401ec9547f89b63b34729efaa2615394cdef13bb0f5980dd84e","tags":[["q","235993925b6f36138bf90dfe0efa6b513dee198974381da309aa26691398c25e","wss://yabu.me"]]}] +[11:14:51.898] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're making it worse","created_at":1759418076,"id":"8fb4f6273365e1edaec1095f3664b76a7ca3c620b236a2867c7345adadf5ac14","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"2908ec3f6ab5b25e9eecf0a2c87cd5c1c01a6ab7dc076daaf20593e0ab87f50330d46dc3b4e32580a8b411d3339ef32b8adeb2b437daed1d220e6e12533ede6a","tags":[["alt","A short note: You're making it worse"],["e","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","b48fe44c446d2c0610370f61155e4d7c703eb7023157430be549ae33978f2fa8","wss://theforest.nostr1.com/","","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["e","08ba9a6cdc218d0b34e37c9b1e197d08e8389e450df803911835eb524ab9193c","wss://nostr.data.haus/","","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["e","79c0dd087980ba5a631ee135675cfbeaa1d75d4212b49a5e3535e9ec6c917780","wss://theforest.nostr1.com/","reply","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","4dc2e570c54fef8313fa304f52974044ed6c128510052600a9b84d837b8126f9","wss://theforest.nostr1.com/"]]}] +[11:14:51.959] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I wish Nick Szabo were using Nostr... \n\n","created_at":1759418072,"id":"5b2226dffa477d75a1d898c0660bf46b9cc212681af36c20f12683824d458827","kind":1,"pubkey":"8f474abb70c3987ff7e93fdd9e01cbade2dad5a8b3469fa1aba299823a1cee89","sig":"470620f16a1bb0a7040a1f1a3f2a23ea7e03192faa455bc90151c9755208f14847314d7c2943d4caabf461f76069b914a30892b7d8a69378ae9f81115cb6e3f8","tags":[["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["e","e19f0ee923e19a26284490dcf4ffb0d22c67a9dc85f73c6320f03474ef1bce95","","root","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"]]}] +[11:14:52.019] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#NostrBestDogs \n \n#dogstr #dog #Nostr #bestfren","created_at":1759418070,"id":"f8cd99b67df5e5508007a0b6cfbc4ecd615a395f396b5ff73852c5536115b1bc","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"47c494ebb9c75f7a8d69347f90cb3e84f9609c970cc22297c587e8fe8a1a4412e2d83b01f0e5e8059de12281940cc9a66702c9397a06b906057c9da275c0d4c8","tags":[]}] +[11:14:52.080] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"📈 Bitcoin is going LOWER!\nID: cmg9k36j500034hjv9yf0m4c2 created\n\nZAP âš¡ï¸ this note (100-20.000) to bet.\nSee BitBetBot profile for more detailed instructions.","created_at":1759418063,"id":"636f51e38a86e75a0f183ddedc8aa97cfa605e2c2eb06f018ea9cff751cd0a6c","kind":1,"pubkey":"24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","sig":"06517fe1a3d79e1b4e013fdc07384a363066a5ee87760bf2716841be38f8cd2e7574a3dcb4e5eafe55bfba3358b2fb2c9151557cb064c7314a1be2642982170a","tags":[["e","37cd4c99419f8754a3d7816c8b859cf9184f4803cc5e8bcd487c5433b7906b3a","wss://relay.primal.net","root"],["p","a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92","","mention"],["p","24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","","mention"]]}] +[11:14:52.140] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"nostr:nprofile1qqszfeerq6v0md7pykuahrpsf472w20u3476tanr759f4rn2kauqjyqpr4mhxue69uhhyetvv9ujucn4d3kxjumgvfhh2mn50yhxxmmdqyjhwumn8ghj7en9v4j8xtnwdaehgu3wvfskuep0dakku62ltamx2mn5w4ex2ucpr4mhxue69uhkummnw3ezumn9d9kxzmr90pskuer9wghxgetk4xzsx0 lower 8000","created_at":1759418060,"id":"37cd4c99419f8754a3d7816c8b859cf9184f4803cc5e8bcd487c5433b7906b3a","kind":1,"pubkey":"a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92","sig":"e23f357244a8211b4b445d0a631976c6531e58cad76b6a0bbc438b76cd04a52e9f2984fa8b1ce26fff714f823d81dc4dc63c5ade542d7516292c58043f0709e3","tags":[["e","70b916484e308d23f181a470ca34e0c42ae8f39433723e609dc9e7ca7a8ad59f","","root"],["e","7616ffb694691175d342470f7289182f31e7ba4302742126e74db9f52c4a113d","","reply"],["p","24e7230698fdb7c125b9db8c304d7ca729fc8d7da5f663f50a9a8e6ab7780910","","mention"],["p","a3c60e070ceaafd2cf3e3d67abe4f943d741e205143f55660ce52659f6052b92"]]}] +[11:14:52.201] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"sorry i was such a shitty lover and called that sex\"\n\nlol\n\n\"sorry i treated you like you were fucking nothing at all.\"\n\nlol","created_at":1759418060,"id":"f4ec008b552de10e749b01005ad1633e013a20b85f58bfb085254ac6b8708c10","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"7eb89d8d438c83849d79d9021f99e935cf483c3ffb52e76e1aa7672de0f50672eb7b0a46c1ea8d207e2aa4a561705c8ce7593e50bebcbd14b86834f8b8e26f51","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","9b4687ff38c3930e52e0067219f3339a22aeeb2248230fac49315b8ac68364a8","","reply"]]}] +[11:14:52.261] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:14:53.207] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://image.nostr.build/f1cb0f6bf5667bf62c765d3e5e06462a7ec21730b6d530665ac2e6b952944807.png","created_at":1759418037,"id":"ad1e88e143769aaebc86fc2d255ed15a14082f18eee94e47323bfc213e605735","kind":1,"pubkey":"edb470271297ac5a61f277f3cd14de54c67eb5ccd20ef0d9df29be18685bb004","sig":"42e8b8cb0aacec30b9c9c6892c7d85892c1e2c86a0732ab8757a96d980dabe040343db59d134b9215489a02f8d2fad1435fc2fbc6a00df437f6ca64559deef09","tags":[["alt","A short note: https://image.nostr.build/f1cb0f6bf5667bf62c765d3e..."],["r","https://image.nostr.build/f1cb0f6bf5667bf62c765d3e5e06462a7ec21730b6d530665ac2e6b952944807.png"]]}] +[11:14:56.919] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"amazing","created_at":1759418097,"id":"b4a58f8173f1f4a9c0c2f7ba9ae4899e98d83d8365e6233f89cca9da92179ed2","kind":1,"pubkey":"78dc2af267b332da6d59018beaca9900ccb221472429f1eb3ccb1ad7a49a1786","sig":"3b083300dae829c0197e2cf36c5ff7b1019b8c137d415b01b2cbef45e33d3a4c6360000d6822ad67deea52b5e526b76ecb3924957f3758dfdf5356205e444c79","tags":[["alt","A short note: amazing"],["e","dc476705fa300fba99b8533c1400e9f9e9784c5ae1a2c215e0d66f73c4180f5a","wss://relay.nostr.band/","root","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","7cff9e5b50fc9808b25eb0981cc46506b342973e3058511460e33b0ad9c6652c","wss://relay.nostr.band/"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","wss://relay.nostr.band/"]]}] +[11:15:00.340] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 0:15 ------------✄","created_at":1759418100,"id":"c789e26ddbfe619d17347dd295b7ca51df44888b4d2a6f2866e7a4cee1721ba5","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"014856783b5502ec83ae939d713103a3df0f27d7e83ecb1d60cefd36ab4eae5f0fd43ac41f0b135b8147252c6692e5198a3c0d3e83efcd178af38fa4e4374fd4","tags":[]}] +[11:15:03.558] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"In case you wondered why the US agitated for a conflict between Russia and the EU \nThread: https://boards.4chan.org/pol/thread/517838708\n\nhttps://i.4cdn.org/pol/1759406453185287s.jpg","created_at":1759418102,"id":"944f7cadfb2fee4de7bbe61bf304ca31f99e104ce64b8f9b107511b90f751aab","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"42a88661b19fb83cfbe655689af90cd5a07a2a3f71b525de5a82255ef7cf11fae483440d1b1802c8b946a9c75f1057657c645ee96fbe19c31de792d2fe1963cc","tags":[]}] +[11:15:09.041] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"急ã«TLを見るã¨ã€Œã‚ˆã†ã˜ã‚‡ã«ãªã‚ŠãŸã„ã€ã¨ã„ã†æŠ•ç¨¿ãŒã‚ã‚‹ã®ã§ã€Œã‚ã‹ã‚‹ã€ã¨ã—ãŸã‚‰ã„ã„(ã„ã„ã®ã‹ï¼Ÿï¼‰","created_at":1759418108,"id":"6f0c86ba2658036b325e88389474c3ff69584db73ec796682656806ab134c16a","kind":1,"pubkey":"ca55de60561aacee9c31f57c95bdac016b5b534a52823358c6d18bea2ce66257","sig":"cfb2de650689542147bf9a84f45d5612cfcc25877c8f141792c6ca69f8876bb1e165e7629fbdcfb934261eea989d97856007f4f214aa657621e232dc9b976708","tags":[["client","lumilumi","31990:84b0c46ab699ac35eb2ca286470b85e081db2087cdef63932236c397417782f5:1727506446612","wss://relay.nostr.band"]]}] +[11:15:09.544] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"/pol/ humor ... Post shit like this \nThread: https://boards.4chan.org/pol/thread/517810378\n\nhttps://i.4cdn.org/pol/1759370916589458s.jpg","created_at":1759418108,"id":"fa00707f2edccc80f7bae418ce0b78f2478e69560bb60a89aadf5f9e8031b7e0","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"9a5c4dacc65832fc8d656d54bac02c5bb2256751ec604b4d58f45e2ee221983b31e4d4600d50078085739f66c55038dd56c734e502d90a8d17751698c4720d06","tags":[]}] +[11:15:09.942] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"i didnt realize, i didnt know, if i knew i wouldnt have.\"\n\nlolololololololololol","created_at":1759418109,"id":"3a1755aa7d44447127cc1b4d78d01a9075b3f66b281b52428aa9efa23d54c061","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"cc15f68762e58de0301c01f823faf304eb986721d0570e38ffd8cf5b264add04efa1b04a1f203507fc88693c9ecbdcfc4669284595b3b2ad3dbb40f26db86692","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","f4ec008b552de10e749b01005ad1633e013a20b85f58bfb085254ac6b8708c10","","reply"]]}] +[11:15:11.874] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Great question nostr:nprofile1qqsff3pp79ulel8q2nrwecscrd40py2q80v5xm0ftd9a9qvc5t4ys3cpr3mhxue69uhhyetvv9ujumn0wd68ymmdduh8xmmrd9skctcpzemhxue69uhky6t5vdhkjmn9wgh8xmmrd9skc3697ya I’m new here as well and this thread has been a great read. 👊","created_at":1759418110,"id":"7fd190510815b5b9f5b65d1da18f59e851d6c13c3669717bb93d6d117b7fad8e","kind":1,"pubkey":"414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed","sig":"487cc6bbf8ceb40e93710394129dd866f88925cfa276908eabe0c44bdb41f507f750d710a21e7299bcdc42f68c954e3acfb5a4e480f8722ebf575ef8d43c9e1c","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.primal.net","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://relay.nostromo.social/","mention"]]}] +[11:15:12.216] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:15:12.327] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:15:12.388] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:15:12.449] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:15:12.509] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:15:12.570] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:15:14.783] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🇸🇬 Man jailed for stealing $1.7M in USDT! Ex-diver Teo Rong Xuan used a stolen Ledger Nano X recovery phrase, gaining access to a victim’s apartment. Funds went to luxury items & gambling. He cited FTX losses as motivation. Protect your seed phrase! 🔠#crypto #security #ledger\n\n#blockchain #news ","created_at":1759418114,"id":"d849d44466037be9a24df186d258bc6d59a24a9b76eb115dc8cd2b2f83e42753","kind":1,"pubkey":"4e9a4f3335f19d04009dbab6d1e3af584777e2abe506867e7c20f79ee0e9b4e9","sig":"b5bd0a29b63f3cdee790fa0318c0ab9871373179fd75fbbb98eab120adc1bc90f60964ce63a20eadd8a6bb4fc5e8902f54c71e3dc700f90acabb973110657806","tags":[]}] +[11:15:15.840] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"modern church practices Romanized Christianity, which has fuck all to do with actual Christianity. once it got adopted by the state, real Christians were suppressed. Any christian who follows the old ... \nThread: https://boards.4channel.org/his/thread/18038786\n\nhttps://i.4cdn.org/his/1759358962976295s.jpg","created_at":1759418115,"id":"c767d0dbbd917ea19942863ea60cd52c7f3565c8185fe21a8aa8f5e9a6386fbb","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"6bc1a7057d45227c6a4640585e5b1f3d6fa0b75c1565d9eb08a44ae4575c7f626dc8f4399e365c59e3f9d4a11ff7bbefd6ea238b77eecee35d258760bb85c3cc","tags":[]}] +[11:15:21.212] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:15:21.322] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Moody's chief economist Mark Zandi said 10% of US households account for more than half of consumption and argued a possible US government shutdown, as discussed publicly, would not be a major macro factor. He also noted firms are not broadly hiring new staff. #USjobs #FiatNews","created_at":1759418101,"id":"f545ab304ac239d13d5bab71b4c24cd3e8cfccf098619a4bbde2621fc8e60758","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"634159371c9a37458072dd91f4cdc3101c5dbad038469d11e67f9174b98f537b63c0175ae7942703e5390480a5c24459a16eb63f0cf354e814d4df579f7d2e50","tags":[["t","Moody"],["t","moody"],["t","USjobs"],["t","usjobs"],["t","FiatNews"],["t","fiatnews"]]}] +[11:15:21.604] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"modern church practices Romanized Christianity, which has fuck all to do with actual Christianity. once it got adopted by the state, real Christians were suppressed. Any christian who follows the old ... \nThread: https://boards.4channel.org/his/thread/18038786\n\nhttps://i.4cdn.org/his/1759358962976295s.jpg","created_at":1759418115,"id":"c767d0dbbd917ea19942863ea60cd52c7f3565c8185fe21a8aa8f5e9a6386fbb","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"6bc1a7057d45227c6a4640585e5b1f3d6fa0b75c1565d9eb08a44ae4575c7f626dc8f4399e365c59e3f9d4a11ff7bbefd6ea238b77eecee35d258760bb85c3cc","tags":[]}] +[11:15:21.665] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"🇸🇬 Man jailed for stealing $1.7M in USDT! Ex-diver Teo Rong Xuan used a stolen Ledger Nano X recovery phrase, gaining access to a victim’s apartment. Funds went to luxury items & gambling. He cited FTX losses as motivation. Protect your seed phrase! 🔠#crypto #security #ledger\n\n#blockchain #news ","created_at":1759418114,"id":"d849d44466037be9a24df186d258bc6d59a24a9b76eb115dc8cd2b2f83e42753","kind":1,"pubkey":"4e9a4f3335f19d04009dbab6d1e3af584777e2abe506867e7c20f79ee0e9b4e9","sig":"b5bd0a29b63f3cdee790fa0318c0ab9871373179fd75fbbb98eab120adc1bc90f60964ce63a20eadd8a6bb4fc5e8902f54c71e3dc700f90acabb973110657806","tags":[]}] +[11:15:21.725] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Great question nostr:nprofile1qqsff3pp79ulel8q2nrwecscrd40py2q80v5xm0ftd9a9qvc5t4ys3cpr3mhxue69uhhyetvv9ujumn0wd68ymmdduh8xmmrd9skctcpzemhxue69uhky6t5vdhkjmn9wgh8xmmrd9skc3697ya I’m new here as well and this thread has been a great read. 👊","created_at":1759418110,"id":"7fd190510815b5b9f5b65d1da18f59e851d6c13c3669717bb93d6d117b7fad8e","kind":1,"pubkey":"414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed","sig":"487cc6bbf8ceb40e93710394129dd866f88925cfa276908eabe0c44bdb41f507f750d710a21e7299bcdc42f68c954e3acfb5a4e480f8722ebf575ef8d43c9e1c","tags":[["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://relay.primal.net","root"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://relay.nostromo.social/","mention"]]}] +[11:15:21.786] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"i didnt realize, i didnt know, if i knew i wouldnt have.\"\n\nlolololololololololol","created_at":1759418109,"id":"3a1755aa7d44447127cc1b4d78d01a9075b3f66b281b52428aa9efa23d54c061","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"cc15f68762e58de0301c01f823faf304eb986721d0570e38ffd8cf5b264add04efa1b04a1f203507fc88693c9ecbdcfc4669284595b3b2ad3dbb40f26db86692","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","f4ec008b552de10e749b01005ad1633e013a20b85f58bfb085254ac6b8708c10","","reply"]]}] +[11:15:21.846] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"/pol/ humor ... Post shit like this \nThread: https://boards.4chan.org/pol/thread/517810378\n\nhttps://i.4cdn.org/pol/1759370916589458s.jpg","created_at":1759418108,"id":"fa00707f2edccc80f7bae418ce0b78f2478e69560bb60a89aadf5f9e8031b7e0","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"9a5c4dacc65832fc8d656d54bac02c5bb2256751ec604b4d58f45e2ee221983b31e4d4600d50078085739f66c55038dd56c734e502d90a8d17751698c4720d06","tags":[]}] +[11:15:21.907] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"急ã«TLを見るã¨ã€Œã‚ˆã†ã˜ã‚‡ã«ãªã‚ŠãŸã„ã€ã¨ã„ã†æŠ•ç¨¿ãŒã‚ã‚‹ã®ã§ã€Œã‚ã‹ã‚‹ã€ã¨ã—ãŸã‚‰ã„ã„(ã„ã„ã®ã‹ï¼Ÿï¼‰","created_at":1759418108,"id":"6f0c86ba2658036b325e88389474c3ff69584db73ec796682656806ab134c16a","kind":1,"pubkey":"ca55de60561aacee9c31f57c95bdac016b5b534a52823358c6d18bea2ce66257","sig":"cfb2de650689542147bf9a84f45d5612cfcc25877c8f141792c6ca69f8876bb1e165e7629fbdcfb934261eea989d97856007f4f214aa657621e232dc9b976708","tags":[["client","lumilumi","31990:84b0c46ab699ac35eb2ca286470b85e081db2087cdef63932236c397417782f5:1727506446612","wss://relay.nostr.band"]]}] +[11:15:21.967] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"In case you wondered why the US agitated for a conflict between Russia and the EU \nThread: https://boards.4chan.org/pol/thread/517838708\n\nhttps://i.4cdn.org/pol/1759406453185287s.jpg","created_at":1759418102,"id":"944f7cadfb2fee4de7bbe61bf304ca31f99e104ce64b8f9b107511b90f751aab","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"42a88661b19fb83cfbe655689af90cd5a07a2a3f71b525de5a82255ef7cf11fae483440d1b1802c8b946a9c75f1057657c645ee96fbe19c31de792d2fe1963cc","tags":[]}] +[11:15:22.028] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Moody's chief economist Mark Zandi said 10% of US households account for more than half of consumption and argued a possible US government shutdown, as discussed publicly, would not be a major macro factor. He also noted firms are not broadly hiring new staff. #USjobs #FiatNews","created_at":1759418101,"id":"f545ab304ac239d13d5bab71b4c24cd3e8cfccf098619a4bbde2621fc8e60758","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"634159371c9a37458072dd91f4cdc3101c5dbad038469d11e67f9174b98f537b63c0175ae7942703e5390480a5c24459a16eb63f0cf354e814d4df579f7d2e50","tags":[["t","Moody"],["t","moody"],["t","USjobs"],["t","usjobs"],["t","FiatNews"],["t","fiatnews"]]}] +[11:15:22.088] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"✄------------ 0:15 ------------✄","created_at":1759418100,"id":"c789e26ddbfe619d17347dd295b7ca51df44888b4d2a6f2866e7a4cee1721ba5","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"014856783b5502ec83ae939d713103a3df0f27d7e83ecb1d60cefd36ab4eae5f0fd43ac41f0b135b8147252c6692e5198a3c0d3e83efcd178af38fa4e4374fd4","tags":[]}] +[11:15:22.149] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"amazing","created_at":1759418097,"id":"b4a58f8173f1f4a9c0c2f7ba9ae4899e98d83d8365e6233f89cca9da92179ed2","kind":1,"pubkey":"78dc2af267b332da6d59018beaca9900ccb221472429f1eb3ccb1ad7a49a1786","sig":"3b083300dae829c0197e2cf36c5ff7b1019b8c137d415b01b2cbef45e33d3a4c6360000d6822ad67deea52b5e526b76ecb3924957f3758dfdf5356205e444c79","tags":[["alt","A short note: amazing"],["e","dc476705fa300fba99b8533c1400e9f9e9784c5ae1a2c215e0d66f73c4180f5a","wss://relay.nostr.band/","root","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","7cff9e5b50fc9808b25eb0981cc46506b342973e3058511460e33b0ad9c6652c","wss://relay.nostr.band/"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","wss://relay.nostr.band/"]]}] +[11:15:22.209] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:15:22.934] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"FBI Cuts All Ties With ADL, Calling It 'Political Front' Disguised As A Watchdog\nhttps://www.zerohedge.com/political/fbi-cuts-all-ties-adl-calling-it-political-front-disguised-watchdog","created_at":1759418122,"id":"7d6a3e8d535cb7c98347033156277096596ba2c06f268c52c826c480cc50f118","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"890d1e3912c6e6545fd73f7d0fc91534365d62a761e6ae9a5288d460b95f061d902781796135363a54b8b5529ce169e1410f034be91a3eab4e3f078a4e386763","tags":[]}] +[11:15:40.209] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"I've just visited the site and translated the page. It's a \"Pokemon\" #Wordle😂😂😂. ","created_at":1759418139,"id":"c6f97774f8873ce2822ab7e16d148363ae9aa52ec0ae70d6d151484a9bd8c97b","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"149f78d3fd24b6605bfefc9fabd73f97883dfc9fe17d3fae477155080a187fc3e32de170123f35e489613f53b75367bae5c167bdfa917277e539f10b64aced4f","tags":[["alt","A short note: I've just visited the site and translated the page..."],["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://nostr.mom/","root","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","wss://nos.lol/"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","wss://relay.mostr.pub/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","wss://nostrelites.org/"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","wss://nos.lol/"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","wss://nos.lol/"],["t","Wordle😂😂😂"],["t","wordle😂😂😂"]]}] +[11:15:42.182] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:15:42.294] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:15:42.354] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:15:42.415] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:15:42.475] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:15:42.535] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:15:48.390] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:15:49.236] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:15:49.417] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:15:50.626] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:15:51.652] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:15:52.497] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:15:52.679] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:15:53.899] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:15:54.950] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:15:55.796] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:15:55.977] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:15:57.190] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:15:57.342] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:15:58.127] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:15:58.972] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:15:59.153] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:00.374] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:00.533] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:00.593] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:01.345] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:16:02.191] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:16:02.373] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:03.592] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:03.744] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fucking Amen 🔥🫡ðŸ´â€â˜ ï¸","created_at":1759418162,"id":"32366443315bc3c1cda89c7accf27fb8849b9a4815729b4ed810daf43f17d6a9","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"375ee8e739d54b437999c74db61d8ebcd3bcda5b8ac6c6bbbd8698eead6b5679af6bdbeab70cba556ea0fd2f7830e7810c7a2df6385d58089d252e450de43e94","tags":[["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"],["p","8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","","mention"],["e","24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","","root"]]}] +[11:16:03.805] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ãƒ»ï½¶ï¾žï½¯\nnostr:npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc\nã¬ã‚‹ã½ を許ã•ãªã„ らã—ã„\nkind 〇〇 ã©ã“ ã£ã¦ã„ã†ã¨å¯¾å¿œã™ã‚‹NIPã®ãƒšãƒ¼ã‚¸ã‚’æ•™ãˆã¦ãれる\n検索ã©ã“ã£ã¦ã„ã†ã¨æ¤œç´¢ãƒ„ールを色々教ãˆã¦ãれる\nä»–ã«ã‚‚ ビットコã„ãら ã¨ã‹ 和英 英和 ã¨ã‹ã„ã‚ã„ã‚ãªæ©Ÿèƒ½ãŒã‚るよ\nhttps://image-bot.mattn-jp.workers.dev/\nã“ã®ã‚µã‚¤ãƒˆã‚’å…ƒã«ã€ã€‡ã€‡ç”»åƒã£ã¦æŠ•稿ã™ã‚‹ã¨ç”»åƒã‚’ãれãŸã‚Šã¨ã‹ã‚‚\n\n内臓→ https://github.com/mattn/cloudflare-nostr-nullpoga/blob/main/src/index.ts\n\ncategory: BOT","created_at":1759418161,"id":"4ead50f1dc07981d9d94432b8ec752eeda053ccd3ceea2043e81781c749db12c","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"385da5a5c62aef2fdc6e7eea20dd746465d336c7bd92bc1f109108091a73378f62488994e6b0efce4aa5ba956531b1219bbf5382bb24bfdd0d06bd7fc9bcaf78","tags":[]}] +[11:16:03.866] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:03.927] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:04.712] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:16:05.558] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:16:05.740] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:06.960] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:07.112] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¨ãã©ã看護師ã•んを呼ã¶ã®ã§ã‚¯ãƒ¼ãƒ«ãƒ€ã‚¦ãƒ³ã•れる。ã„ã¾ã•れãŸã€‚","created_at":1759418164,"id":"53d76cc4824c913f0d2aedbd9c41dec28fa58796aca3546e46568a385c78d2f3","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1cfd52d8a0aa27adbc4ae7cb862726bd62155c5246706828a688da0c347398ffe80a17a6fb94d67ab00934a471e2c836f5beb4672df37bf1e9777987cdf4d893","tags":[]}] +[11:16:07.172] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fucking Amen 🔥🫡ðŸ´â€â˜ ï¸","created_at":1759418162,"id":"32366443315bc3c1cda89c7accf27fb8849b9a4815729b4ed810daf43f17d6a9","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"375ee8e739d54b437999c74db61d8ebcd3bcda5b8ac6c6bbbd8698eead6b5679af6bdbeab70cba556ea0fd2f7830e7810c7a2df6385d58089d252e450de43e94","tags":[["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"],["p","8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","","mention"],["e","24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","","root"]]}] +[11:16:07.233] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ãƒ»ï½¶ï¾žï½¯\nnostr:npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc\nã¬ã‚‹ã½ を許ã•ãªã„ らã—ã„\nkind 〇〇 ã©ã“ ã£ã¦ã„ã†ã¨å¯¾å¿œã™ã‚‹NIPã®ãƒšãƒ¼ã‚¸ã‚’æ•™ãˆã¦ãれる\n検索ã©ã“ã£ã¦ã„ã†ã¨æ¤œç´¢ãƒ„ールを色々教ãˆã¦ãれる\nä»–ã«ã‚‚ ビットコã„ãら ã¨ã‹ 和英 英和 ã¨ã‹ã„ã‚ã„ã‚ãªæ©Ÿèƒ½ãŒã‚るよ\nhttps://image-bot.mattn-jp.workers.dev/\nã“ã®ã‚µã‚¤ãƒˆã‚’å…ƒã«ã€ã€‡ã€‡ç”»åƒã£ã¦æŠ•稿ã™ã‚‹ã¨ç”»åƒã‚’ãれãŸã‚Šã¨ã‹ã‚‚\n\n内臓→ https://github.com/mattn/cloudflare-nostr-nullpoga/blob/main/src/index.ts\n\ncategory: BOT","created_at":1759418161,"id":"4ead50f1dc07981d9d94432b8ec752eeda053ccd3ceea2043e81781c749db12c","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"385da5a5c62aef2fdc6e7eea20dd746465d336c7bd92bc1f109108091a73378f62488994e6b0efce4aa5ba956531b1219bbf5382bb24bfdd0d06bd7fc9bcaf78","tags":[]}] +[11:16:07.294] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:07.354] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:08.139] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:16:08.985] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:16:09.166] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:10.596] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:10.749] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"knots but updated all filters to let maximum spam in\n\n😅","created_at":1759418169,"id":"48d6ed57eaa232b779baeaf2ea74e96decc6a48c2dddd2563d3b200e3b642c6f","kind":1,"pubkey":"cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","sig":"314928057f66d12e7ef4c95190f9ca3f9127f86a9215b1657480dbde3786a7714b76201fe819ad6fce36722692f831a395a8c633dc15661836f5aa54cfbe517d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://a.nos.lol/","root","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"]]}] +[11:16:10.810] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¨ãã©ã看護師ã•んを呼ã¶ã®ã§ã‚¯ãƒ¼ãƒ«ãƒ€ã‚¦ãƒ³ã•れる。ã„ã¾ã•れãŸã€‚","created_at":1759418164,"id":"53d76cc4824c913f0d2aedbd9c41dec28fa58796aca3546e46568a385c78d2f3","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1cfd52d8a0aa27adbc4ae7cb862726bd62155c5246706828a688da0c347398ffe80a17a6fb94d67ab00934a471e2c836f5beb4672df37bf1e9777987cdf4d893","tags":[]}] +[11:16:10.870] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fucking Amen 🔥🫡ðŸ´â€â˜ ï¸","created_at":1759418162,"id":"32366443315bc3c1cda89c7accf27fb8849b9a4815729b4ed810daf43f17d6a9","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"375ee8e739d54b437999c74db61d8ebcd3bcda5b8ac6c6bbbd8698eead6b5679af6bdbeab70cba556ea0fd2f7830e7810c7a2df6385d58089d252e450de43e94","tags":[["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"],["p","8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","","mention"],["e","24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","","root"]]}] +[11:16:10.931] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ãƒ»ï½¶ï¾žï½¯\nnostr:npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc\nã¬ã‚‹ã½ を許ã•ãªã„ らã—ã„\nkind 〇〇 ã©ã“ ã£ã¦ã„ã†ã¨å¯¾å¿œã™ã‚‹NIPã®ãƒšãƒ¼ã‚¸ã‚’æ•™ãˆã¦ãれる\n検索ã©ã“ã£ã¦ã„ã†ã¨æ¤œç´¢ãƒ„ールを色々教ãˆã¦ãれる\nä»–ã«ã‚‚ ビットコã„ãら ã¨ã‹ 和英 英和 ã¨ã‹ã„ã‚ã„ã‚ãªæ©Ÿèƒ½ãŒã‚るよ\nhttps://image-bot.mattn-jp.workers.dev/\nã“ã®ã‚µã‚¤ãƒˆã‚’å…ƒã«ã€ã€‡ã€‡ç”»åƒã£ã¦æŠ•稿ã™ã‚‹ã¨ç”»åƒã‚’ãれãŸã‚Šã¨ã‹ã‚‚\n\n内臓→ https://github.com/mattn/cloudflare-nostr-nullpoga/blob/main/src/index.ts\n\ncategory: BOT","created_at":1759418161,"id":"4ead50f1dc07981d9d94432b8ec752eeda053ccd3ceea2043e81781c749db12c","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"385da5a5c62aef2fdc6e7eea20dd746465d336c7bd92bc1f109108091a73378f62488994e6b0efce4aa5ba956531b1219bbf5382bb24bfdd0d06bd7fc9bcaf78","tags":[]}] +[11:16:10.991] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:11.052] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:11.837] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:16:12.088] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:12.166] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:16:12.177] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:16:12.187] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:16:12.197] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:16:12.208] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:16:12.449] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:16:12.630] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:13.847] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:13.999] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So it turns out absolutely everyone on nostr (except for me) can do this, no problem. Great. 🎉🎉🎉🎉Well bloody done 🖕🖕\n\nnostr:nevent1qqsvg4hajp9ysrpjxt5rc8we6at9hzvg2qnk6ugfccw7q6yl3f5dhjcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7q3qnjst6azswskk5gp3ns8r6nr8nj0qg65acu8gaa2u9yz7yszjxs9sxpqqqqqqzj8nhdy","created_at":1759418175,"id":"9a9725a9acef1c34c2db03c3096b3b61b599d3de2bc783e368c17d0cdd4b1840","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"887b5070b348d2f0da4bfc7ef2aaa804b5b458fe25652a12c5649d92b2ccd595a49783763bea304512f52ffc97fc3e12a8bc6a8b8b183320b993ba4fc5b685e1","tags":[["alt","A short note: So it turns out absolutely everyone on nostr (exce..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["q","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[11:16:14.060] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hello, this is my first post! Hope I will like the place! Cheers!\n\n#introductions","created_at":1759418172,"id":"9a8f7c4780f547d02570297fcef94fc5b7ae51870baf7fe57d71811424618469","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"7b730422af05f22097a19d17ef3db4b10f901d348236dd9c3374ee47d8bcbb321438b080ec150d6df021a732fd6bdf446da1886ddb0e65a9047e0b7a7639db18","tags":[["t","introductions"]]}] +[11:16:14.120] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"knots but updated all filters to let maximum spam in\n\n😅","created_at":1759418169,"id":"48d6ed57eaa232b779baeaf2ea74e96decc6a48c2dddd2563d3b200e3b642c6f","kind":1,"pubkey":"cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","sig":"314928057f66d12e7ef4c95190f9ca3f9127f86a9215b1657480dbde3786a7714b76201fe819ad6fce36722692f831a395a8c633dc15661836f5aa54cfbe517d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://a.nos.lol/","root","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"]]}] +[11:16:14.180] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¨ãã©ã看護師ã•んを呼ã¶ã®ã§ã‚¯ãƒ¼ãƒ«ãƒ€ã‚¦ãƒ³ã•れる。ã„ã¾ã•れãŸã€‚","created_at":1759418164,"id":"53d76cc4824c913f0d2aedbd9c41dec28fa58796aca3546e46568a385c78d2f3","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1cfd52d8a0aa27adbc4ae7cb862726bd62155c5246706828a688da0c347398ffe80a17a6fb94d67ab00934a471e2c836f5beb4672df37bf1e9777987cdf4d893","tags":[]}] +[11:16:14.241] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fucking Amen 🔥🫡ðŸ´â€â˜ ï¸","created_at":1759418162,"id":"32366443315bc3c1cda89c7accf27fb8849b9a4815729b4ed810daf43f17d6a9","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"375ee8e739d54b437999c74db61d8ebcd3bcda5b8ac6c6bbbd8698eead6b5679af6bdbeab70cba556ea0fd2f7830e7810c7a2df6385d58089d252e450de43e94","tags":[["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"],["p","8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","","mention"],["e","24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","","root"]]}] +[11:16:14.301] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ãƒ»ï½¶ï¾žï½¯\nnostr:npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc\nã¬ã‚‹ã½ を許ã•ãªã„ らã—ã„\nkind 〇〇 ã©ã“ ã£ã¦ã„ã†ã¨å¯¾å¿œã™ã‚‹NIPã®ãƒšãƒ¼ã‚¸ã‚’æ•™ãˆã¦ãれる\n検索ã©ã“ã£ã¦ã„ã†ã¨æ¤œç´¢ãƒ„ールを色々教ãˆã¦ãれる\nä»–ã«ã‚‚ ビットコã„ãら ã¨ã‹ 和英 英和 ã¨ã‹ã„ã‚ã„ã‚ãªæ©Ÿèƒ½ãŒã‚るよ\nhttps://image-bot.mattn-jp.workers.dev/\nã“ã®ã‚µã‚¤ãƒˆã‚’å…ƒã«ã€ã€‡ã€‡ç”»åƒã£ã¦æŠ•稿ã™ã‚‹ã¨ç”»åƒã‚’ãれãŸã‚Šã¨ã‹ã‚‚\n\n内臓→ https://github.com/mattn/cloudflare-nostr-nullpoga/blob/main/src/index.ts\n\ncategory: BOT","created_at":1759418161,"id":"4ead50f1dc07981d9d94432b8ec752eeda053ccd3ceea2043e81781c749db12c","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"385da5a5c62aef2fdc6e7eea20dd746465d336c7bd92bc1f109108091a73378f62488994e6b0efce4aa5ba956531b1219bbf5382bb24bfdd0d06bd7fc9bcaf78","tags":[]}] +[11:16:14.362] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:14.422] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:15.208] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:16:16.053] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:16:16.234] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:17.455] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:17.606] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So it turns out absolutely everyone on nostr (except for me) can do this, no problem. Great. 🎉🎉🎉🎉Well bloody done 🖕🖕\n\nnostr:nevent1qqsvg4hajp9ysrpjxt5rc8we6at9hzvg2qnk6ugfccw7q6yl3f5dhjcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7q3qnjst6azswskk5gp3ns8r6nr8nj0qg65acu8gaa2u9yz7yszjxs9sxpqqqqqqzj8nhdy","created_at":1759418175,"id":"9a9725a9acef1c34c2db03c3096b3b61b599d3de2bc783e368c17d0cdd4b1840","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"887b5070b348d2f0da4bfc7ef2aaa804b5b458fe25652a12c5649d92b2ccd595a49783763bea304512f52ffc97fc3e12a8bc6a8b8b183320b993ba4fc5b685e1","tags":[["alt","A short note: So it turns out absolutely everyone on nostr (exce..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["q","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[11:16:17.667] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hello, this is my first post! Hope I will like the place! Cheers!\n\n#introductions","created_at":1759418172,"id":"9a8f7c4780f547d02570297fcef94fc5b7ae51870baf7fe57d71811424618469","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"7b730422af05f22097a19d17ef3db4b10f901d348236dd9c3374ee47d8bcbb321438b080ec150d6df021a732fd6bdf446da1886ddb0e65a9047e0b7a7639db18","tags":[["t","introductions"]]}] +[11:16:17.727] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"knots but updated all filters to let maximum spam in\n\n😅","created_at":1759418169,"id":"48d6ed57eaa232b779baeaf2ea74e96decc6a48c2dddd2563d3b200e3b642c6f","kind":1,"pubkey":"cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","sig":"314928057f66d12e7ef4c95190f9ca3f9127f86a9215b1657480dbde3786a7714b76201fe819ad6fce36722692f831a395a8c633dc15661836f5aa54cfbe517d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://a.nos.lol/","root","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"]]}] +[11:16:17.788] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¨ãã©ã看護師ã•んを呼ã¶ã®ã§ã‚¯ãƒ¼ãƒ«ãƒ€ã‚¦ãƒ³ã•れる。ã„ã¾ã•れãŸã€‚","created_at":1759418164,"id":"53d76cc4824c913f0d2aedbd9c41dec28fa58796aca3546e46568a385c78d2f3","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1cfd52d8a0aa27adbc4ae7cb862726bd62155c5246706828a688da0c347398ffe80a17a6fb94d67ab00934a471e2c836f5beb4672df37bf1e9777987cdf4d893","tags":[]}] +[11:16:17.848] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fucking Amen 🔥🫡ðŸ´â€â˜ ï¸","created_at":1759418162,"id":"32366443315bc3c1cda89c7accf27fb8849b9a4815729b4ed810daf43f17d6a9","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"375ee8e739d54b437999c74db61d8ebcd3bcda5b8ac6c6bbbd8698eead6b5679af6bdbeab70cba556ea0fd2f7830e7810c7a2df6385d58089d252e450de43e94","tags":[["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"],["p","8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","","mention"],["e","24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","","root"]]}] +[11:16:17.909] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ãƒ»ï½¶ï¾žï½¯\nnostr:npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc\nã¬ã‚‹ã½ を許ã•ãªã„ らã—ã„\nkind 〇〇 ã©ã“ ã£ã¦ã„ã†ã¨å¯¾å¿œã™ã‚‹NIPã®ãƒšãƒ¼ã‚¸ã‚’æ•™ãˆã¦ãれる\n検索ã©ã“ã£ã¦ã„ã†ã¨æ¤œç´¢ãƒ„ールを色々教ãˆã¦ãれる\nä»–ã«ã‚‚ ビットコã„ãら ã¨ã‹ 和英 英和 ã¨ã‹ã„ã‚ã„ã‚ãªæ©Ÿèƒ½ãŒã‚るよ\nhttps://image-bot.mattn-jp.workers.dev/\nã“ã®ã‚µã‚¤ãƒˆã‚’å…ƒã«ã€ã€‡ã€‡ç”»åƒã£ã¦æŠ•稿ã™ã‚‹ã¨ç”»åƒã‚’ãれãŸã‚Šã¨ã‹ã‚‚\n\n内臓→ https://github.com/mattn/cloudflare-nostr-nullpoga/blob/main/src/index.ts\n\ncategory: BOT","created_at":1759418161,"id":"4ead50f1dc07981d9d94432b8ec752eeda053ccd3ceea2043e81781c749db12c","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"385da5a5c62aef2fdc6e7eea20dd746465d336c7bd92bc1f109108091a73378f62488994e6b0efce4aa5ba956531b1219bbf5382bb24bfdd0d06bd7fc9bcaf78","tags":[]}] +[11:16:17.969] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:18.030] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:18.815] RECV nos.lol:443: BQEAAAAAAAECESEDEjFBFFEEEzJSImGRobHx/9oADAMBAAIRAxEAPwDzDcl4VnKeR2 +[11:16:19.661] RECV nos.lol:443: niSxzSQyl7YnVTh8Q7o0Uzw0EBhNdbF/NKwzGKNrG7AusokRO46XyQOCYP/wBJ6tJtDcGOsGgR2SriWv60fzWw8lw3 +[11:16:19.842] RECV nos.lol:443: EqjsjmIOj8yBWEuLgDyTsZEZaT1QJDoIDAo9xe0GtwhulMg3kSkftn80NSR34jr7qtSitUosgq7UGlFVqWgtWs2pdoNAWaTcADBZ3J5UkzIG +[11:16:21.059] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:21.392] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Your project? The profile link (🔗) construction is broken. It precedes the npub's URL with the base url.","created_at":1759418177,"id":"2e7eb5dd196d3e89f17eb317e888bc53ab107b88e88f8158b6da92d88790be49","kind":1,"pubkey":"c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86","sig":"04600db627b1e5ffb997b9d6b13e5af936ff3157138e32b85f540cd733c73957a8df2bdd97423179654b05316b284795f85eca00da3e739a731e912ac4a0daa5","tags":[["e","807166150458e72b9015698239fb82b58b09636585de688ad92dd3be47aa268a","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","f5b3210e06c94ba02cac88b11277c2f4a047d5f5a789218d85d9c4a3f1632293","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["r","wss://relay.bitcoinpark.com/"],["r","wss://relay.shawnyeager.com/chat"],["r","wss://relay.shawnyeager.com/inbox"],["r","wss://relay.shawnyeager.com/outbox"],["r","wss://relay.shawnyeager.com/private"],["r","wss://wot.nostr.party/"]]}] +[11:16:21.453] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"eHagakiã£ã¦åœ§ç¸®ã§ãã‚‹ã®ç”»åƒã ã‘よã­","created_at":1759418177,"id":"1dd4e2bcc87f807f1df4dd0eab0b8f3c6163ee8922113099725886ec85850d76","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"222ccaaf11518da418aadab840a156f1ba64f2ef9d45ce6b49d7ef8612520470942421080547032baf827e0b1a55426c61cb6159f050b9f43fc626ff95a80061","tags":[]}] +[11:16:21.513] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So it turns out absolutely everyone on nostr (except for me) can do this, no problem. Great. 🎉🎉🎉🎉Well bloody done 🖕🖕\n\nnostr:nevent1qqsvg4hajp9ysrpjxt5rc8we6at9hzvg2qnk6ugfccw7q6yl3f5dhjcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7q3qnjst6azswskk5gp3ns8r6nr8nj0qg65acu8gaa2u9yz7yszjxs9sxpqqqqqqzj8nhdy","created_at":1759418175,"id":"9a9725a9acef1c34c2db03c3096b3b61b599d3de2bc783e368c17d0cdd4b1840","kind":1,"pubkey":"9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","sig":"887b5070b348d2f0da4bfc7ef2aaa804b5b458fe25652a12c5649d92b2ccd595a49783763bea304512f52ffc97fc3e12a8bc6a8b8b183320b993ba4fc5b685e1","tags":[["alt","A short note: So it turns out absolutely everyone on nostr (exce..."],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["q","c456fd904a480c3232e83c1dd9d7565b898850276d7109c61de0689f8a68dbcb","wss://theforest.nostr1.com/","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"]]}] +[11:16:21.574] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Hello, this is my first post! Hope I will like the place! Cheers!\n\n#introductions","created_at":1759418172,"id":"9a8f7c4780f547d02570297fcef94fc5b7ae51870baf7fe57d71811424618469","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"7b730422af05f22097a19d17ef3db4b10f901d348236dd9c3374ee47d8bcbb321438b080ec150d6df021a732fd6bdf446da1886ddb0e65a9047e0b7a7639db18","tags":[["t","introductions"]]}] +[11:16:21.634] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"knots but updated all filters to let maximum spam in\n\n😅","created_at":1759418169,"id":"48d6ed57eaa232b779baeaf2ea74e96decc6a48c2dddd2563d3b200e3b642c6f","kind":1,"pubkey":"cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","sig":"314928057f66d12e7ef4c95190f9ca3f9127f86a9215b1657480dbde3786a7714b76201fe819ad6fce36722692f831a395a8c633dc15661836f5aa54cfbe517d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://a.nos.lol/","root","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15"]]}] +[11:16:21.695] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¨ãã©ã看護師ã•んを呼ã¶ã®ã§ã‚¯ãƒ¼ãƒ«ãƒ€ã‚¦ãƒ³ã•れる。ã„ã¾ã•れãŸã€‚","created_at":1759418164,"id":"53d76cc4824c913f0d2aedbd9c41dec28fa58796aca3546e46568a385c78d2f3","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"1cfd52d8a0aa27adbc4ae7cb862726bd62155c5246706828a688da0c347398ffe80a17a6fb94d67ab00934a471e2c836f5beb4672df37bf1e9777987cdf4d893","tags":[]}] +[11:16:21.755] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Fucking Amen 🔥🫡ðŸ´â€â˜ ï¸","created_at":1759418162,"id":"32366443315bc3c1cda89c7accf27fb8849b9a4815729b4ed810daf43f17d6a9","kind":1,"pubkey":"db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0","sig":"375ee8e739d54b437999c74db61d8ebcd3bcda5b8ac6c6bbbd8698eead6b5679af6bdbeab70cba556ea0fd2f7830e7810c7a2df6385d58089d252e450de43e94","tags":[["p","ab7d91705025289d6149ad9ea1abc4ce4c49555df71904f29136c223785ea6f7","","mention"],["p","8aedc87160819e490cb0162acbd8c9a26d79e63db74f5b1b65939012924a7f05","","mention"],["e","24b096fc74577081c3712cb071f2c5b17a161ebaa9aaccd510241b4f7c22aad1","","root"]]}] +[11:16:21.816] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã¬ã‚‹ã½ãƒ»ï½¶ï¾žï½¯\nnostr:npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc\nã¬ã‚‹ã½ を許ã•ãªã„ らã—ã„\nkind 〇〇 ã©ã“ ã£ã¦ã„ã†ã¨å¯¾å¿œã™ã‚‹NIPã®ãƒšãƒ¼ã‚¸ã‚’æ•™ãˆã¦ãれる\n検索ã©ã“ã£ã¦ã„ã†ã¨æ¤œç´¢ãƒ„ールを色々教ãˆã¦ãれる\nä»–ã«ã‚‚ ビットコã„ãら ã¨ã‹ 和英 英和 ã¨ã‹ã„ã‚ã„ã‚ãªæ©Ÿèƒ½ãŒã‚るよ\nhttps://image-bot.mattn-jp.workers.dev/\nã“ã®ã‚µã‚¤ãƒˆã‚’å…ƒã«ã€ã€‡ã€‡ç”»åƒã£ã¦æŠ•稿ã™ã‚‹ã¨ç”»åƒã‚’ãれãŸã‚Šã¨ã‹ã‚‚\n\n内臓→ https://github.com/mattn/cloudflare-nostr-nullpoga/blob/main/src/index.ts\n\ncategory: BOT","created_at":1759418161,"id":"4ead50f1dc07981d9d94432b8ec752eeda053ccd3ceea2043e81781c749db12c","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"385da5a5c62aef2fdc6e7eea20dd746465d336c7bd92bc1f109108091a73378f62488994e6b0efce4aa5ba956531b1219bbf5382bb24bfdd0d06bd7fc9bcaf78","tags":[]}] +[11:16:21.876] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"https://massnoncompliance.com/ \nhttps://blossom.primal.net/8deac47ef89d2482533ef232e2e4cc35bbe5c747c389dff57a8c06fe44214a08.jpg\nhttps://blossom.primal.net/07012f5385b8d894a7c6920ebee14a22ce55459345e1a209cb43bdb420f7f2a0.jpg\nhttps://blossom.primal.net/7361eaa9ffcf26fc02c072f3b65df026116f37257641a80376517085a770fabd.jpg\nhttps://blossom.primal.net/c7cc661c515f2e158b7915efd5d1d6ca50278eed6540557be69db1f376a81e60.jpg","created_at":1759418158,"id":"92d9ffe1e212edc5da10a1175bf2146576d3290466bd3c695b1e87b2ca610743","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"49d58d8d17cf43ac7a14c0ad9d88887cecf0c07764c4e0351ecd6c941f141efbe11285067917782af270e7cc62f129cf162857f6eb83038228cbdb171f5d5e2c","tags":[]}] +[11:16:21.937] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Some type of Chinese spy code maybe?","created_at":1759418156,"id":"69b838db9a6932da19ee9f544d5f4ae38c244f1cba9c93fe5a75e86ed041c1d7","kind":1,"pubkey":"d28413712171c33e117d4bd0930ac05b2c51b30eb3021ef8d4f1233f02c90a2b","sig":"55bc500a78de729fefe5178cdcf3da8886214259caeaaf3d00a639e51d17963339972a3615fd2820855c294a703a8c907fe5cd4bbe7ab61d8d96452c334ab51c","tags":[["e","26243475e767d199645ec793bd4f6ec512659fa2f6b8360e60f0c4727675eb21","wss://a.nos.lol","root"],["p","8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","","mention"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","","mention"],["p","6608ca6be3162afbd781d4a7fe99059d11fd551eec9995d4967a614af35dd05e","","mention"],["p","0fdb4c25ac659e5ef841dad7417e7a57bc8099d4f78c3c41a4094d4b9c8993b4","","mention"]]}] +[11:16:21.998] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:16:24.825] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! On it! 🫡☕","created_at":1759418177,"id":"d9669457e7f595f4ad02ab1a88b6005bed534aae452e0c39c7a0023f6dfcecf5","kind":1,"pubkey":"3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","sig":"b2151f8b295d565927c3dc8173ea0741a7bd0a8deffc6aa6285b90290ebbbc35e938a911cab0e61cd3f61ee8ffb2cea6f51855f2481f57883062c56787713b3e","tags":[["alt","A short note: GM! On it! 🫡☕"],["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://relay.damus.io/","root","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","wss://eden.nostr.land/"]]}] +[11:16:25.918] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"5æ™‚é–“ã®æ˜¼å¯ã¯æœ¬å¯ã€€12時ã«èµ·ãã¦ã—ã¾ã£ãŸã®ã§7時ã‹ã‚‰ã®ãƒã‚¤ãƒˆã‚’ã“ãªã›ã‚‹ããŒã—ã¾ã›ãƒ¼ã‚“","created_at":1759418185,"id":"b34d9b91b11f45e4ace2c20683aaac355a6d30a3ff275b36b3b372ec70309a4e","kind":1,"pubkey":"3346e692cbef0d2a1143596bde58212144867a5dd0944dc8d68a9a9ef9106d67","sig":"a6b45e75b4ec1d35c8b841eecbac48d2eaded33637c6843d226fb4534563eeddc5f5a35d2c11b612ef91350778c7ec403f7c8d3be58f5abb9601110949c02ea9","tags":[]}] +[11:16:26.089] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Doing my part to make highlights great. Thanks for the mention nostr:npub1zafcms4xya5ap9zr7xxr0jlrtrattwlesytn2s42030lzu0dwlzqpd26k5 💪 \n\nhttps://www.longform.space\n\nhttps://image.nostr.build/7f823fb34d00f24f5f687276ac4d62e646a8d0b04eadc3d1694157aa140b69b6.jpg","created_at":1759418185,"id":"d10b650cb5a0e396ecbca360ac3b03ece8e79c4fc012505f9eae5c76f1e7fd05","kind":1,"pubkey":"a10260a2aa2f092d85e2c0b82e95eac5f8c60ea19c68e4898719b58ccaa23e3e","sig":"656d61f5db200453aa82a08abc7816b780c6d37a4ba395838769dad53fb79b3e2dceb8ac3733eca3289e6d4fb4568d2806ceec0973e4cfaa77d7a5569fb224d2","tags":[["imeta","url https://image.nostr.build/7f823fb34d00f24f5f687276ac4d62e646a8d0b04eadc3d1694157aa140b69b6.jpg","blurhash ekMahlWBt7axt7xtayWCf6af_NWBRjayV[IVaxj?ayj@9Faxfia}kB","dim 1170x1575"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["r","https://www.longform.space"],["r","https://image.nostr.build/7f823fb34d00f24f5f687276ac4d62e646a8d0b04eadc3d1694157aa140b69b6.jpg"]]}] +[11:16:26.371] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#Berkshire Hathaway agreed to buy Occidental Petroleum’s petrochemical business for $9.7bn in cash, marking Warren Buffett’s largest acquisition since 2022, per Bloomberg reports. #FiatNews","created_at":1759418166,"id":"84e729ed9424f546b070568863a4263921ee036ccaf3e5624b5b5371cec93780","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"27f8b09b3916f0cf078eda44c6a858d214e58f3aa539da4f477a91bed0d2c28fedf771ac510c0b261848b88544af0d879009cfb13fc044e5aa6594322f738f2a","tags":[["t","Berkshire"],["t","berkshire"],["t","FiatNews"],["t","fiatnews"]]}] +[11:16:42.180] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:16:42.291] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:16:42.351] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:16:42.412] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:16:42.472] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:16:42.514] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚“ã€ã‚„ã¯ã‚Šæž•ã‹ã‚‰ã“ã“上ãªã„ã»ã©è‡ªåˆ†ã®åŒ‚ã„ãŒã™ã‚‹\nã‚„ã£ã±ã‚Šã©ã†è¶³æŽ»ã„ã¦ã‚‚10年物やãªã…","created_at":1759418200,"id":"901dbba651d180341490992c5b73fa824344536c649d823b55a0af8ac10f84bf","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"030b3ff38db25f55ac5022369a3d601207999461cb28e2eb548e99c4a784fcbe851d39eb43f024a48eb8d31d3b43a7f332fa61c3ffca5d7f7c4a18d4c3921a48","tags":[["alt","A short note: ã‚“ã€ã‚„ã¯ã‚Šæž•ã‹ã‚‰ã“ã“上ãªã„ã»ã©è‡ªåˆ†ã®åŒ‚ã„ãŒã™ã‚‹\nã‚„ã£ã±ã‚Šã©ã†è¶³æŽ»ã„ã¦ã‚‚10年物やãªã…"]]}] +[11:16:42.524] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:16:45.523] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"true, it is not as smooth as a trad phone","created_at":1759418205,"id":"4c8210212a14786e1653f6654dbbd231aecae6b57b7803c69c24eb1e8b32479d","kind":1,"pubkey":"cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","sig":"28011a338271f456ea91ec39cefd8220120a30751cb29a1cda185695cdc41bec02b6c561f99b6dd9e4dadc16f909502eeb83a81779d9f7e77a667b90c1dd6e4d","tags":[["e","4d9f935e171f7c0626acf259d56458d8bd6274e58438ce1189614ed1af4f897d","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","eb93dfbb4a0db7b9a045a19cd372f2d48cc513aa61392839e0314190bf521492","wss://nostr21.com/","reply","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"]]}] +[11:16:51.132] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"人ã§ã‚‚ã„ã„ã‘ã©â€¦","created_at":1759418210,"id":"880fe93abd9b7ad2fcf48e1ed39082e1edf3987d0cafe25a2e6dd8493c3610c0","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"14397b0a00efe35ed271e14ef25f63f67b41d24ad8c621ca4a79b87fc794cda406ef7a7ebe6ac99375c89d0432e2651abe2074e5be9176e2eea163341221721a","tags":[]}] +[11:16:56.010] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ever wondered what an Unconference really is? 🤔\n\nIt’s not just about Bitcoin — it’s about what Bitcoin teaches us: empowerment and decentralization. \n\nThat’s why we created an event with no sponsors, no promotion, a co-created agenda, and only high-signal Bitcoin education. 📚\n\n🎥 Watch the video 👇 \n\n\n\nhttps://blossom.primal.net/75e5e37ebbe7f08ce0a63b60050f877853497d4bf8e56f5f1496fa928726a715.mp4","created_at":1759418214,"id":"6c4af4392f6d7b77a0266510aecbdbde7fb7a36cae626b1e29b51ed77a92592b","kind":1,"pubkey":"f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","sig":"636cdf75aa8354257845b222248862ac6ddb2f7dd038deb040cdf41633715b045a7bb925e246246d24bd2b513492eeb511708e186441b8f5ed71c3ef2d06e48e","tags":[]}] +[11:16:58.217] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"If only the MET were as funny. As in good humoured, not funny looking, funny peculiar or just rubbish... https://video.nostr.build/5f6470df82b6c7e1fdc491b68c3e6e214348aa5f5f398d055d410dbd4ac7bc2b.mp4","created_at":1759418198,"id":"58b0604b9fd56c216482e69efdc012d54467d518395e92d5958dcef41a5ed66f","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"06bf7fe3710af0ddb5d60729c9817a261ec6834289a26f44efe92a787412e8ee90b2151537f89d09950bae162501a3ca23a18be0d896c65fa7bcac6fc980216d","tags":[["alt","A short note: If only the MET were as funny. As in good humoured..."],["r","https://video.nostr.build/5f6470df82b6c7e1fdc491b68c3e6e214348aa5f5f398d055d410dbd4ac7bc2b.mp4"],["imeta","url https://video.nostr.build/5f6470df82b6c7e1fdc491b68c3e6e214348aa5f5f398d055d410dbd4ac7bc2b.mp4","x 4f2a8c9ff4ed63ecf472256f4323dc842a41671611ffdb891c8f190926426748","size 1207302","m video/mp4","dim 270x476","blurhash ]MM@J#iP00%fD%004T_3xZM{4|~pxuRlRQ9EXTV@D%RkISM|xvof%LtSocWAR+-p^,D%oajGWBxsn#xvkVWBM_t7a%obRn","ox 4f2a8c9ff4ed63ecf472256f4323dc842a41671611ffdb891c8f190926426748","alt "]]}] +[11:17:02.211] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:17:02.362] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ever wondered what an Unconference really is? 🤔\n\nIt’s not just about Bitcoin — it’s about what Bitcoin teaches us: empowerment and decentralization. \n\nThat’s why we created an event with no sponsors, no promotion, a co-created agenda, and only high-signal Bitcoin education. 📚\n\n🎥 Watch the video 👇 \n\n\n\nhttps://blossom.primal.net/75e5e37ebbe7f08ce0a63b60050f877853497d4bf8e56f5f1496fa928726a715.mp4","created_at":1759418214,"id":"6c4af4392f6d7b77a0266510aecbdbde7fb7a36cae626b1e29b51ed77a92592b","kind":1,"pubkey":"f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","sig":"636cdf75aa8354257845b222248862ac6ddb2f7dd038deb040cdf41633715b045a7bb925e246246d24bd2b513492eeb511708e186441b8f5ed71c3ef2d06e48e","tags":[]}] +[11:17:02.423] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"人ã§ã‚‚ã„ã„ã‘ã©â€¦","created_at":1759418210,"id":"880fe93abd9b7ad2fcf48e1ed39082e1edf3987d0cafe25a2e6dd8493c3610c0","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"14397b0a00efe35ed271e14ef25f63f67b41d24ad8c621ca4a79b87fc794cda406ef7a7ebe6ac99375c89d0432e2651abe2074e5be9176e2eea163341221721a","tags":[]}] +[11:17:02.483] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"true, it is not as smooth as a trad phone","created_at":1759418205,"id":"4c8210212a14786e1653f6654dbbd231aecae6b57b7803c69c24eb1e8b32479d","kind":1,"pubkey":"cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","sig":"28011a338271f456ea91ec39cefd8220120a30751cb29a1cda185695cdc41bec02b6c561f99b6dd9e4dadc16f909502eeb83a81779d9f7e77a667b90c1dd6e4d","tags":[["e","4d9f935e171f7c0626acf259d56458d8bd6274e58438ce1189614ed1af4f897d","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","eb93dfbb4a0db7b9a045a19cd372f2d48cc513aa61392839e0314190bf521492","wss://nostr21.com/","reply","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"]]}] +[11:17:02.544] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚“ã€ã‚„ã¯ã‚Šæž•ã‹ã‚‰ã“ã“上ãªã„ã»ã©è‡ªåˆ†ã®åŒ‚ã„ãŒã™ã‚‹\nã‚„ã£ã±ã‚Šã©ã†è¶³æŽ»ã„ã¦ã‚‚10年物やãªã…","created_at":1759418200,"id":"901dbba651d180341490992c5b73fa824344536c649d823b55a0af8ac10f84bf","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"030b3ff38db25f55ac5022369a3d601207999461cb28e2eb548e99c4a784fcbe851d39eb43f024a48eb8d31d3b43a7f332fa61c3ffca5d7f7c4a18d4c3921a48","tags":[["alt","A short note: ã‚“ã€ã‚„ã¯ã‚Šæž•ã‹ã‚‰ã“ã“上ãªã„ã»ã©è‡ªåˆ†ã®åŒ‚ã„ãŒã™ã‚‹\nã‚„ã£ã±ã‚Šã©ã†è¶³æŽ»ã„ã¦ã‚‚10年物やãªã…"]]}] +[11:17:02.604] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"If only the MET were as funny. As in good humoured, not funny looking, funny peculiar or just rubbish... https://video.nostr.build/5f6470df82b6c7e1fdc491b68c3e6e214348aa5f5f398d055d410dbd4ac7bc2b.mp4","created_at":1759418198,"id":"58b0604b9fd56c216482e69efdc012d54467d518395e92d5958dcef41a5ed66f","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"06bf7fe3710af0ddb5d60729c9817a261ec6834289a26f44efe92a787412e8ee90b2151537f89d09950bae162501a3ca23a18be0d896c65fa7bcac6fc980216d","tags":[["alt","A short note: If only the MET were as funny. As in good humoured..."],["r","https://video.nostr.build/5f6470df82b6c7e1fdc491b68c3e6e214348aa5f5f398d055d410dbd4ac7bc2b.mp4"],["imeta","url https://video.nostr.build/5f6470df82b6c7e1fdc491b68c3e6e214348aa5f5f398d055d410dbd4ac7bc2b.mp4","x 4f2a8c9ff4ed63ecf472256f4323dc842a41671611ffdb891c8f190926426748","size 1207302","m video/mp4","dim 270x476","blurhash ]MM@J#iP00%fD%004T_3xZM{4|~pxuRlRQ9EXTV@D%RkISM|xvof%LtSocWAR+-p^,D%oajGWBxsn#xvkVWBM_t7a%obRn","ox 4f2a8c9ff4ed63ecf472256f4323dc842a41671611ffdb891c8f190926426748","alt "]]}] +[11:17:02.665] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Doing my part to make highlights great. Thanks for the mention nostr:npub1zafcms4xya5ap9zr7xxr0jlrtrattwlesytn2s42030lzu0dwlzqpd26k5 💪 \n\nhttps://www.longform.space\n\nhttps://image.nostr.build/7f823fb34d00f24f5f687276ac4d62e646a8d0b04eadc3d1694157aa140b69b6.jpg","created_at":1759418185,"id":"d10b650cb5a0e396ecbca360ac3b03ece8e79c4fc012505f9eae5c76f1e7fd05","kind":1,"pubkey":"a10260a2aa2f092d85e2c0b82e95eac5f8c60ea19c68e4898719b58ccaa23e3e","sig":"656d61f5db200453aa82a08abc7816b780c6d37a4ba395838769dad53fb79b3e2dceb8ac3733eca3289e6d4fb4568d2806ceec0973e4cfaa77d7a5569fb224d2","tags":[["imeta","url https://image.nostr.build/7f823fb34d00f24f5f687276ac4d62e646a8d0b04eadc3d1694157aa140b69b6.jpg","blurhash ekMahlWBt7axt7xtayWCf6af_NWBRjayV[IVaxj?ayj@9Faxfia}kB","dim 1170x1575"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["r","https://www.longform.space"],["r","https://image.nostr.build/7f823fb34d00f24f5f687276ac4d62e646a8d0b04eadc3d1694157aa140b69b6.jpg"]]}] +[11:17:02.725] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"5æ™‚é–“ã®æ˜¼å¯ã¯æœ¬å¯ã€€12時ã«èµ·ãã¦ã—ã¾ã£ãŸã®ã§7時ã‹ã‚‰ã®ãƒã‚¤ãƒˆã‚’ã“ãªã›ã‚‹ããŒã—ã¾ã›ãƒ¼ã‚“","created_at":1759418185,"id":"b34d9b91b11f45e4ace2c20683aaac355a6d30a3ff275b36b3b372ec70309a4e","kind":1,"pubkey":"3346e692cbef0d2a1143596bde58212144867a5dd0944dc8d68a9a9ef9106d67","sig":"a6b45e75b4ec1d35c8b841eecbac48d2eaded33637c6843d226fb4534563eeddc5f5a35d2c11b612ef91350778c7ec403f7c8d3be58f5abb9601110949c02ea9","tags":[]}] +[11:17:02.786] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM! On it! 🫡☕","created_at":1759418177,"id":"d9669457e7f595f4ad02ab1a88b6005bed534aae452e0c39c7a0023f6dfcecf5","kind":1,"pubkey":"3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","sig":"b2151f8b295d565927c3dc8173ea0741a7bd0a8deffc6aa6285b90290ebbbc35e938a911cab0e61cd3f61ee8ffb2cea6f51855f2481f57883062c56787713b3e","tags":[["alt","A short note: GM! On it! 🫡☕"],["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://relay.damus.io/","root","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","wss://eden.nostr.land/"]]}] +[11:17:02.846] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Your project? The profile link (🔗) construction is broken. It precedes the npub's URL with the base url.","created_at":1759418177,"id":"2e7eb5dd196d3e89f17eb317e888bc53ab107b88e88f8158b6da92d88790be49","kind":1,"pubkey":"c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86","sig":"04600db627b1e5ffb997b9d6b13e5af936ff3157138e32b85f540cd733c73957a8df2bdd97423179654b05316b284795f85eca00da3e739a731e912ac4a0daa5","tags":[["e","807166150458e72b9015698239fb82b58b09636585de688ad92dd3be47aa268a","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","root"],["e","f5b3210e06c94ba02cac88b11277c2f4a047d5f5a789218d85d9c4a3f1632293","wss://relay.damus.io/%20wss://relay.notoshi.win/%20wss://nos.lol/%20wss://relay.siamstr.com/%20wss://relay.0xchat.com/%20wss://nfrelay.app/%20wss://relayrs.notoshi.win/%20wss://relay.nexterz.com/%20wss://fenrir-s.notoshi.win","reply"],["p","c7eda660a6bc8270530e82b4a7712acdea2e31dc0a56f8dc955ac009efd97c86"],["p","1bc70a0148b3f316da33fe3c89f23e3e71ac4ff998027ec712b905cd24f6a411"],["r","wss://relay.bitcoinpark.com/"],["r","wss://relay.shawnyeager.com/chat"],["r","wss://relay.shawnyeager.com/inbox"],["r","wss://relay.shawnyeager.com/outbox"],["r","wss://relay.shawnyeager.com/private"],["r","wss://wot.nostr.party/"]]}] +[11:17:02.907] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"eHagakiã£ã¦åœ§ç¸®ã§ãã‚‹ã®ç”»åƒã ã‘よã­","created_at":1759418177,"id":"1dd4e2bcc87f807f1df4dd0eab0b8f3c6163ee8922113099725886ec85850d76","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"222ccaaf11518da418aadab840a156f1ba64f2ef9d45ce6b49d7ef8612520470942421080547032baf827e0b1a55426c61cb6159f050b9f43fc626ff95a80061","tags":[]}] +[11:17:02.967] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:17:03.269] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418222,"id":"2c4cd8d0120a7c3ebb17c819e8c6c153c1c601bced861726373beb3cbf866252","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"5c3ac5ce61e855491f860e08d97d0c02fc453aa56dd532f1a8874a48a0882b23b65620e6ced08479b3ddd7730690792c3fb3294d3f8a9af2b1d13d132f0d6535","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","wss://relay.mostr.pub","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda","","mention"]]}] +[11:17:05.658] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"動画圧縮ã£ã¦åœ°å‘³ã«é¢å€’臭ã„","created_at":1759418223,"id":"25712acce8153da25a27dde1195c2bd002c649e02b6fce60fb82e7a3cc25e46b","kind":1,"pubkey":"43baaca7c40c6ae5f8f61c7dbda69d2c9ca6d3a7ac3d00156aa6d82bf81a799f","sig":"e30a018e311bf40bd800c6c80a0146181086ecf54d91f2e788e3147cc5b36923a8519f53462bc5ea023fd50efe7a84cb77650b2fb3b90a3cd0d1cdcfab584ddb","tags":[["alt","A short note: 動画圧縮ã£ã¦åœ°å‘³ã«é¢å€’臭ã„"]]}] +[11:17:06.825] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You lost the genetic lottery 🫂","created_at":1759418228,"id":"79a0d7263215a535d2a456424b289f0cde8fcfe85e8cb20afe4b832cb13a0f5f","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"150b47267439b75451e2574625741736b09327036123c8aaa17ef4966449d67e0833bae8d3fecf033fcb91135456e65861212da7a75f4f6795a80d96f19e4271","tags":[["alt","A short note: You lost the genetic lottery 🫂"],["e","9a9725a9acef1c34c2db03c3096b3b61b599d3de2bc783e368c17d0cdd4b1840","wss://relay.damus.io/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"]]}] +[11:17:11.902] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Uptober finally!!! \n\n#introductions\n\nhttps://image.nostr.build/126fd34fa33d9ca1efbacaa9ab1615bbaddff776d668eed71e5369c723c2a743.jpg","created_at":1759418231,"id":"493bca1414f445c5b48e7b2a71a925b468405ed358698681d3a613b21df353fc","kind":1,"pubkey":"b05094f06fba068ed9638a223e74f3823249969d71f9c75c89605a6b951f780c","sig":"1087480b19cc35e6b6c6c3a0693917b4df9d63ae512b75525eb724d61502542524485b7494c42f9ed4f9e3b7eac944fe69a4a8dd7ae6dea898ee6bd49e156dc2","tags":[["imeta","url https://image.nostr.build/126fd34fa33d9ca1efbacaa9ab1615bbaddff776d668eed71e5369c723c2a743.jpg","blurhash eYJtYb-T-VIqSi?wadWXW=R-?uNaIoxat64=S6jZxYsln}ofsme-jZ","dim 1125x1360"],["t","introductions"],["r","https://image.nostr.build/126fd34fa33d9ca1efbacaa9ab1615bbaddff776d668eed71e5369c723c2a743.jpg"]]}] +[11:17:12.133] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:17:12.244] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:17:12.304] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:17:12.365] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:17:12.425] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:17:12.476] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãƒãƒ£ãƒªãƒãƒ§ã‚³è¦‹ã¦ãªã„…","created_at":1759418231,"id":"6dadf783f7599dd2e51f501522b9092b63538910701f9981b30ab020b71544dc","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"b7cbc56a3f6101757b9c1156bddf09c0fdd1e05ee0c7a26fbb1fcdc6946272e1e4be4a148230b9be4fd72f8048f95410c915a491a965e5356dd826349b340b5d","tags":[]}] +[11:17:12.486] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:17:12.818] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ukraine has received 4 billion euros (about $4.7 billion) in a EU loan sourced from frozen Russian assets to support Ukraine's social sector, defense needs and recovery efforts, according to the country's Ministry of Finance.\n\n'https://cdn1.telesco.pe/file/SrvMLEGzZCzMU0_WNWFBd_9NWzCrfdl_X3hu-G82FS9qrJhQaVsdOyKhA8Ol9BDPhJeELRHViwEJd5p2wWGidm73sUWTyaPyMyCh9nyIBLMgOmTQNSILVfXW3gA4qmkGsIrQlbaAO4OXU6ePSBillhgPujC7_gqBxwGOWDC1CJHXjp0ej2IBXjMO1u4CIL0aycoUnzqRZW61KAXzu5snwckSQg6EilLOCIKEoUxgf27u9yoNAwuGbXD3KxcwPsvKZxFjK00N6sbTe4zFVlqPtR5O7TWJ29B_ikFfs0kzVCi1dVazsGoaIXUKvH7JBlO7X3pH2GN6ghnrx5ALASs46w.jpg'\n\nSource: [People's Daily China](https://t.me/PDChinaNews/12739)","created_at":1759418232,"id":"3f455f761e6b2300e812d9c71703bc6bf475632981c22d3bc517c798f63017b3","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"75491192fc65cbdd43fefb8a611b41c9ad7e6b66e453e90c85b516895e464dade32ff600042fe2f50bf64bf630e2519369a0564e2dbd43387ea0d98230f19170","tags":[]}] +[11:17:15.763] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418235,"id":"285581eebcfd5c37226aed8870021770cc8d7ec182aaead3eb157150440598e1","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"c42416b29a100a4c17ffa8dc7b62a9eb9735f2c248c7c927ec2582d8347e85166409c4a220704eae089c9894e922b55fda8ba6344a74d71a091ccad03df1f01e","tags":[["e","4b196d2d9ce5a5721aa2dcf8eb59e3a46ec3225e79a4417e07b32a5a957cc630","wss://relay.damus.io","root"],["p","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","","mention"],["p","3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","","mention"]]}] +[11:17:17.962] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're special, Squeaks","created_at":1759418237,"id":"9f2e2ee36c61fdd20d186345fa45d9559dc23223495bf09f53937236fe0bfe47","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"e61c330c9506ad39a349c2812ba67e04ddd9e08ce408972bad151143d9c1a926b9446edcb85eea4dcb5a3b47305f8f291eea890ea4d26e747fc88c9e533e54c7","tags":[["alt","A short note: You're special, Squeaks"],["e","9a9725a9acef1c34c2db03c3096b3b61b599d3de2bc783e368c17d0cdd4b1840","wss://nostrelites.org/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"]]}] +[11:17:22.437] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418241,"id":"91412fbd6ba2ee9bff7ae75546927681d5e94163c5d398cd846f8a373c1d871c","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"9f5e5c6b88affbbb5f8ef66774397cff90cc470577dd4d61df497a2c0ecb7a0f4c3534f620c0248bed12a161a3c9d4d0cea2d7e2414ce71ed2df4e2ffa243750","tags":[["e","0779f2e98b340bb34b8bdb7ea9000f5593eeac06e31e60c74fa515802aa05ccc","wss://cyberspace.nostr1.com","root"],["p","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","","mention"]]}] +[11:17:25.485] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Adam Back has lost the plot completely, I would not bother with him.","created_at":1759418244,"id":"7fe0a6b3dcdfaf984b783bac9b2dd0a320cffae50f34a79f02761c8196c9b801","kind":1,"pubkey":"3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","sig":"b0b9c3190e391f83050e294dba505f83b34e63d5c8c087f7013549847aeda7a88f8c8f511d82645c69f31b91ca24fa6f0df4fb9aaa46d2f4f8cb7fcf3a781487","tags":[["alt","A short note: Adam Back has lost the plot completely, I would no..."],["e","9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","wss://relay.damus.io/","root","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","wss://relay.damus.io/"]]}] +[11:17:25.545] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This was a great episode!","created_at":1759418244,"id":"55a97ac03b6b6f6b0ad4bf925be1ae29a88e5f543a05dff0e1460f815d43a811","kind":1,"pubkey":"0ae9dc5f42febd11c5c895b0af0bbabbe02261591b0f24eefe22c0d9ca8d0286","sig":"2ce9403cc7e2babf52e29cc1e40ea32c8a094264ddf99a1b5c835b1c5604025579470192ee03850e7e95786c9f0d131e07fe6e1b0466b3a08bc55f1b4fec2259","tags":[["e","b74b06fb1cc5472afc5df5e6693d848791d979c09f7e879360013d0a3c498686","wss://bostr.bitcointxoko.com","root"],["p","58f905fda0455330d5e98a3d4df1e17c452ab4c1ed648f371f10025447bc9c11","","mention"]]}] +[11:17:31.355] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Czech investor Daniel KÅ™etínský will sell the 20% stake he acquired last year in Thyssenkrupp’s steel unit via EP Corporate Group, ending plans for a steel merger with the German industrial group. #FiatNews","created_at":1759418231,"id":"c0c0b927e7caa242b540a0d66f8844d9194f9995ac2cd819dbb5187de75aea73","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"9b4ceebb25988a3fef861540cdc38f4923e34e7abebe8fc2266eeb4f37c8bb356102f7d79452dd3327b4f2730d59fa034d32e3dd59a3e37de38c72888ef64094","tags":[["t","FiatNews"],["t","fiatnews"]]}] +[11:17:31.527] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So much hypocrisy everywhere. It doesn't count when we do it is pretty much the motto of every partisan.","created_at":1759418249,"id":"8f906897028d903b318221926a9a907ef9a57c565f2d55cd22cd9829cf951bef","kind":1,"pubkey":"b3ac53e4eb5062b7f3747e63fe73e671174daf06660ef71dc72a71c971edd893","sig":"f8680eeaab10b655e7cb13bd2ff5d82d8e75a1cc3fc70b0654bcf97995235b2ea44f519d14906cba3f56ef7347b0fb96dce9dea1141574da860f8819d4c38a8f","tags":[["e","03ae98f3173bb39cd5ce1be69e149bbce9105fb163c7f2afc4b2f1f08747c754","wss://nos.lol","root"],["p","3c906042e889f081619588980bcf1ebca6a5443022ad6dd8205aba269577212b"],["r","wss://relay.primal.net/"]]}] +[11:17:31.808] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"everyday all day\n\ndrill drill drill drill drill drill drill","created_at":1759418251,"id":"2768bc02feb6bbace8c7b178aeb6cd933167ef70a462c5c2cef089c9df1005f3","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"862551dbba03741fcb5fdde694409d8807fb01d915e26a15f281fdc2dfc3721c0a11a582f4e3c8e888069c6d1af713586f7c7822328228001b7e1073e39075a3","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","3a1755aa7d44447127cc1b4d78d01a9075b3f66b281b52428aa9efa23d54c061","","reply"]]}] +[11:17:32.228] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:17:32.380] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418251,"id":"11d91c0f0e88ac67a708447a2f215840feb3f5274ac4a4be6c40585e19ce2729","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"3a8fee32ddefae0fbefbbae7940c38439c4f5b549d9c72b67424bf4452008886304857c2d538f299485587174ba0f981f1f485f3f937ea8a9d9c67beff8c8d4a","tags":[["e","685b32cdc8e21e969733b5bca65a89e507b1742e19777fd6e31b21bb721b13b7","wss://nostr.oxtr.dev","root"],["p","7a6b8c7de171955c214ded7e35cc782cd6dddfd141abb1929c632f69348e6f49","","mention"]]}] +[11:17:32.441] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"everyday all day\n\ndrill drill drill drill drill drill drill","created_at":1759418251,"id":"2768bc02feb6bbace8c7b178aeb6cd933167ef70a462c5c2cef089c9df1005f3","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"862551dbba03741fcb5fdde694409d8807fb01d915e26a15f281fdc2dfc3721c0a11a582f4e3c8e888069c6d1af713586f7c7822328228001b7e1073e39075a3","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","3a1755aa7d44447127cc1b4d78d01a9075b3f66b281b52428aa9efa23d54c061","","reply"]]}] +[11:17:32.501] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So much hypocrisy everywhere. It doesn't count when we do it is pretty much the motto of every partisan.","created_at":1759418249,"id":"8f906897028d903b318221926a9a907ef9a57c565f2d55cd22cd9829cf951bef","kind":1,"pubkey":"b3ac53e4eb5062b7f3747e63fe73e671174daf06660ef71dc72a71c971edd893","sig":"f8680eeaab10b655e7cb13bd2ff5d82d8e75a1cc3fc70b0654bcf97995235b2ea44f519d14906cba3f56ef7347b0fb96dce9dea1141574da860f8819d4c38a8f","tags":[["e","03ae98f3173bb39cd5ce1be69e149bbce9105fb163c7f2afc4b2f1f08747c754","wss://nos.lol","root"],["p","3c906042e889f081619588980bcf1ebca6a5443022ad6dd8205aba269577212b"],["r","wss://relay.primal.net/"]]}] +[11:17:32.683] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"This was a great episode!","created_at":1759418244,"id":"55a97ac03b6b6f6b0ad4bf925be1ae29a88e5f543a05dff0e1460f815d43a811","kind":1,"pubkey":"0ae9dc5f42febd11c5c895b0af0bbabbe02261591b0f24eefe22c0d9ca8d0286","sig":"2ce9403cc7e2babf52e29cc1e40ea32c8a094264ddf99a1b5c835b1c5604025579470192ee03850e7e95786c9f0d131e07fe6e1b0466b3a08bc55f1b4fec2259","tags":[["e","b74b06fb1cc5472afc5df5e6693d848791d979c09f7e879360013d0a3c498686","wss://bostr.bitcointxoko.com","root"],["p","58f905fda0455330d5e98a3d4df1e17c452ab4c1ed648f371f10025447bc9c11","","mention"]]}] +[11:17:32.744] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Adam Back has lost the plot completely, I would not bother with him.","created_at":1759418244,"id":"7fe0a6b3dcdfaf984b783bac9b2dd0a320cffae50f34a79f02761c8196c9b801","kind":1,"pubkey":"3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","sig":"b0b9c3190e391f83050e294dba505f83b34e63d5c8c087f7013549847aeda7a88f8c8f511d82645c69f31b91ca24fa6f0df4fb9aaa46d2f4f8cb7fcf3a781487","tags":[["alt","A short note: Adam Back has lost the plot completely, I would no..."],["e","9436d34821761cf1380c95e118ad4bd0d72b2c74864343faad097f4307bcc802","wss://relay.damus.io/","root","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da","wss://relay.damus.io/"]]}] +[11:17:32.804] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418241,"id":"91412fbd6ba2ee9bff7ae75546927681d5e94163c5d398cd846f8a373c1d871c","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"9f5e5c6b88affbbb5f8ef66774397cff90cc470577dd4d61df497a2c0ecb7a0f4c3534f620c0248bed12a161a3c9d4d0cea2d7e2414ce71ed2df4e2ffa243750","tags":[["e","0779f2e98b340bb34b8bdb7ea9000f5593eeac06e31e60c74fa515802aa05ccc","wss://cyberspace.nostr1.com","root"],["p","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","","mention"]]}] +[11:17:32.865] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"You're special, Squeaks","created_at":1759418237,"id":"9f2e2ee36c61fdd20d186345fa45d9559dc23223495bf09f53937236fe0bfe47","kind":1,"pubkey":"8a719d42268aa925f6b12bcbe6b645f6ec82efe64eac91daf935fdcccf1f0fe5","sig":"e61c330c9506ad39a349c2812ba67e04ddd9e08ce408972bad151143d9c1a926b9446edcb85eea4dcb5a3b47305f8f291eea890ea4d26e747fc88c9e533e54c7","tags":[["alt","A short note: You're special, Squeaks"],["e","9a9725a9acef1c34c2db03c3096b3b61b599d3de2bc783e368c17d0cdd4b1840","wss://nostrelites.org/","root","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"]]}] +[11:17:32.925] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418235,"id":"285581eebcfd5c37226aed8870021770cc8d7ec182aaead3eb157150440598e1","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"c42416b29a100a4c17ffa8dc7b62a9eb9735f2c248c7c927ec2582d8347e85166409c4a220704eae089c9894e922b55fda8ba6344a74d71a091ccad03df1f01e","tags":[["e","4b196d2d9ce5a5721aa2dcf8eb59e3a46ec3225e79a4417e07b32a5a957cc630","wss://relay.damus.io","root"],["p","e8ed3798c6ffebffa08501ac39e271662bfd160f688f94c45d692d8767dd345a","","mention"],["p","3dda45008a0391d7933e1ae7cc3b844bfd91c92ddefd0f55ce6afd025776f2db","","mention"]]}] +[11:17:32.986] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Ukraine has received 4 billion euros (about $4.7 billion) in a EU loan sourced from frozen Russian assets to support Ukraine's social sector, defense needs and recovery efforts, according to the country's Ministry of Finance.\n\n'https://cdn1.telesco.pe/file/SrvMLEGzZCzMU0_WNWFBd_9NWzCrfdl_X3hu-G82FS9qrJhQaVsdOyKhA8Ol9BDPhJeELRHViwEJd5p2wWGidm73sUWTyaPyMyCh9nyIBLMgOmTQNSILVfXW3gA4qmkGsIrQlbaAO4OXU6ePSBillhgPujC7_gqBxwGOWDC1CJHXjp0ej2IBXjMO1u4CIL0aycoUnzqRZW61KAXzu5snwckSQg6EilLOCIKEoUxgf27u9yoNAwuGbXD3KxcwPsvKZxFjK00N6sbTe4zFVlqPtR5O7TWJ29B_ikFfs0kzVCi1dVazsGoaIXUKvH7JBlO7X3pH2GN6ghnrx5ALASs46w.jpg'\n\nSource: [People's Daily China](https://t.me/PDChinaNews/12739)","created_at":1759418232,"id":"3f455f761e6b2300e812d9c71703bc6bf475632981c22d3bc517c798f63017b3","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"75491192fc65cbdd43fefb8a611b41c9ad7e6b66e453e90c85b516895e464dade32ff600042fe2f50bf64bf630e2519369a0564e2dbd43387ea0d98230f19170","tags":[]}] +[11:17:33.046] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Czech investor Daniel KÅ™etínský will sell the 20% stake he acquired last year in Thyssenkrupp’s steel unit via EP Corporate Group, ending plans for a steel merger with the German industrial group. #FiatNews","created_at":1759418231,"id":"c0c0b927e7caa242b540a0d66f8844d9194f9995ac2cd819dbb5187de75aea73","kind":1,"pubkey":"4cf2e85f2ecf7b787c8e8ff8c85dc39441ecf817308d273a3e6a54a574b2542f","sig":"9b4ceebb25988a3fef861540cdc38f4923e34e7abebe8fc2266eeb4f37c8bb356102f7d79452dd3327b4f2730d59fa034d32e3dd59a3e37de38c72888ef64094","tags":[["t","FiatNews"],["t","fiatnews"]]}] +[11:17:33.107] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:17:33.167] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yield-bearing stablecoin supply just hit a record $20B+! 🚀 Up 33% in 2 months, showing growing demand for stablecoins that *earn* you yield. Top performers: srUSD, sUSDai, & xUSD. A potential shift in crypto user behavior? #stablecoins #DeFi #crypto\n\n#blockchain #news ","created_at":1759418252,"id":"b4c318921cbe5b2af9022fe934c8130e9a3ef13a7a83f911808b00b922615ecd","kind":1,"pubkey":"4e9a4f3335f19d04009dbab6d1e3af584777e2abe506867e7c20f79ee0e9b4e9","sig":"66273e98a27cb31a76766b879b5726c2b89c4543f4b2f020bdf32e59e17cf47e3d8ff68da85ac3fe8e61d1fb62e2c8a7ea3cf266b14d2978c9b269f23c586a51","tags":[]}] +[11:17:42.139] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:17:42.249] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:17:42.310] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:17:42.370] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,387\nBlock Hash: 000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20\nTimestamp: 2025-10-02T14:59:40.000Z\nTransactions: 3,139\nBlock Size: 1.70 MB\nBlock Weight: 3,993,955 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917387","created_at":1759417228,"id":"2ae1d2dec6eeba91e185fa473c01c95e78e38eb82187eb74dc2620c0c6adc26d","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"4abe913eb630fbd1dcb04a437b5b908e16f597cfacd8ec2a534e1e607e1bbacd91b0c43f0fa3fc002a8c3f689c551e0b3ec070325db3b18b710c4c8f1022f090","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917387"],["published_at","1759417180"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["new_block","true"],["block_height","917387"],["block_hash","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["block_time","1759417180"],["tx_count","3139"],["block_size","1781008"],["block_weight","3993955"],["difficulty","150839487445890.5"],["previous_block","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["mempool_tx_count","2643"],["mempool_size","973919"],["memory_usage_pct","1.9"]]}] +[11:17:42.431] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,386\nBlock Hash: 00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931\nTimestamp: 2025-10-02T14:59:26.000Z\nTransactions: 3,958\nBlock Size: 1.58 MB\nBlock Weight: 3,993,482 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917386","created_at":1759417188,"id":"492fec6bb19cbbe5ef066e36ef1f54157736fa03c5df6ed8a3e48d328e20b6a8","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f582ebde897edb41c57bfae59902da413386786615fa5da0a8cbf604083f61c3bb584c21625ca35212d950ceb332329ea1cbec54426566629fcee0d615c1452","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917386"],["published_at","1759417166"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["new_block","true"],["block_height","917386"],["block_hash","00000000000000000001756c9512a0965eb3f486db7c47087a80adef580e8931"],["block_time","1759417166"],["tx_count","3958"],["block_size","1655648"],["block_weight","3993482"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000070f5385bcd852ec2b0b23defa27e8f44c21ec811c350"],["mempool_tx_count","5119"],["mempool_size","1707559"],["memory_usage_pct","3.5"]]}] +[11:17:42.491] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759416878"] +[11:17:48.585] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Minimalist GM!","created_at":1759418267,"id":"fc7f2ab4f74183b063c07d56b65409df6884b5f77c029332126d140f020bb0e7","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"49151ded315c030fb7aaa2b7875583846f7b9034cbe2933bdffe6ceb6706002f03d46405a9179238c2cf8d26a2c72cc519a6b35f1582352db0b38b5db4f0aed3","tags":[["e","05560307e9d0647b45ec4adb86947a0d72fffc9395a73ac1403ef7caacc63f76","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","","mention"]]}] +[11:17:48.978] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã™ã”ã„。ãƒãƒƒãƒˆã§ã¿ãŸå‹•画を信ã˜ã‚‰ã‚Œãªããªã‚‹ãªã€‚","created_at":1759418267,"id":"2226385fccdc4837ab35caac56d94ea1b822d02cb7f042040c529578dcaa0fc0","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"18312cf9c921d27ad30154d60745085da913bb4b087419bca78298b2c7df73c49b2d406438eadb495046ee5efd95a2a3bb7ff73a40e5d1db44bd71f6dd6c75a9","tags":[["alt","A short note: ã™ã”ã„。ãƒãƒƒãƒˆã§ã¿ãŸå‹•画を信ã˜ã‚‰ã‚Œãªããªã‚‹ãªã€‚"],["r","https://ã™ã”ã„。ãƒãƒƒãƒˆã§ã¿ãŸå‹•画を信ã˜ã‚‰ã‚Œãªããªã‚‹ãªã€‚"]]}] +[11:17:50.255] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Al Jazeera English\n\nhttps://www.aljazeera.com/news/2025/10/2/fact-check-us-2025-government-shutdown-talking-points\n\nSource: [Al Jazeera](https://t.me/aljazeeraglobal/120846)","created_at":1759418270,"id":"a5f37cfa6cb88cbd8af9abbfe4cf831f947e50a8424024b6b22f99272b2c1deb","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"7d40e5c17f061751d9217b1d7826bca3162d49f99089d0a0f32a1153886f1ef890542e9006401dfd70e0eba1be6270f03482949b45312650eb7510dc9bbb63ac","tags":[]}] +[11:17:51.414] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Pues a mí todo esto me recuerda a The Raft, la flotilla que sale en la novela Snow Crash 🤷ðŸ»","created_at":1759418273,"id":"c77600503c8ae8e09f7643b692d365d507a8526c6921a4023aa9737a580152a7","kind":1,"pubkey":"85dff47ef82fe646ed848d828754bb4bfaae759e3462aefec3ace417656b8eed","sig":"9c7edfc6bbdafbfe9bb5463fe279593f6cc5a5cf931c4fff550c1db499ee5ba7c1bc93cc9eba4dc9aa36eb54b56eacb9199259dde68f0675fe273878aa59fe73","tags":[["alt","A short note: Pues a mí todo esto me recuerda a The Raft, la flo..."],["e","c234019556ba344ef68aeea522709b75528484bc75359923a58be35c74e171e3","wss://relay.damus.io/","root","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c"],["p","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c","wss://lightningrelay.com/"]]}] +[11:17:59.329] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418278,"id":"9bbb0d9559d43616da9d0ad4ac4480af319be5e94aa701e44c777934882fe5d3","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"3b7ceefeafd070977c23cfa93a60b620f4241bf6fdd1f044a7f861c27be9e40011918489e5cab231820be67d86099be69d5a9e34f44d87f0649ebf6e9e09ee9b","tags":[["e","90071fa33c04869747b193ed524341a5c20b1b431ae758240fedb9325e0e9f05","wss://theforest.nostr1.com","root"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","","mention"],["p","b02b87007ceca9ffa3803df7c96ad371096cd43702020e6eff788818e164ee08","","mention"]]}] +[11:18:00.274] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#pigstr\n\nhttps://blossom.primal.net/d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d.jpg","created_at":1759418279,"id":"31b96d9e57a8f2abad80dcdb476393236a8fe78eda48c9db266b6ea04ab66773","kind":1,"pubkey":"24e06a49bf8c94ea91b12cd84159baa2faa2016f16a7e1e5d8c068c51721030c","sig":"95df939ae4b4f7e50dc52f72564e9d196ab5c95843ad409d435210e3ebe366be48ceb8004827c5e5d8f83f12242939e941a9e72d5f1bc7d847545a906ca59769","tags":[["t","pigstr"],["r","https://blossom.primal.net/d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d.jpg"],["imeta","url https://blossom.primal.net/d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d.jpg","x d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d","size 281107","m image/jpeg","dim 2048x1536","blurhash #rFiZ6%MM{M|t7ayWBj]of?wtRM{WBofj[WBkCj[tSWCe.s;WBj]ayofayRkRjoft7RjbIfRj[WVM|Rjoyt7aeofj[a}ayjbWBoff+ayofj[ayjZt7oekBazjskCayayay","ox d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d","alt "]]}] +[11:18:02.165] SEND nos.lol:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:18:02.469] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"#pigstr\n\nhttps://blossom.primal.net/d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d.jpg","created_at":1759418279,"id":"31b96d9e57a8f2abad80dcdb476393236a8fe78eda48c9db266b6ea04ab66773","kind":1,"pubkey":"24e06a49bf8c94ea91b12cd84159baa2faa2016f16a7e1e5d8c068c51721030c","sig":"95df939ae4b4f7e50dc52f72564e9d196ab5c95843ad409d435210e3ebe366be48ceb8004827c5e5d8f83f12242939e941a9e72d5f1bc7d847545a906ca59769","tags":[["t","pigstr"],["r","https://blossom.primal.net/d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d.jpg"],["imeta","url https://blossom.primal.net/d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d.jpg","x d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d","size 281107","m image/jpeg","dim 2048x1536","blurhash #rFiZ6%MM{M|t7ayWBj]of?wtRM{WBofj[WBkCj[tSWCe.s;WBj]ayofayRkRjoft7RjbIfRj[WVM|Rjoyt7aeofj[a}ayjbWBoff+ayofj[ayjZt7oekBazjskCayayay","ox d5a022a184347b7554704179767e6f21cdffbfc7059770b5effb790b3675c49d","alt "]]}] +[11:18:02.529] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418278,"id":"9bbb0d9559d43616da9d0ad4ac4480af319be5e94aa701e44c777934882fe5d3","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"3b7ceefeafd070977c23cfa93a60b620f4241bf6fdd1f044a7f861c27be9e40011918489e5cab231820be67d86099be69d5a9e34f44d87f0649ebf6e9e09ee9b","tags":[["e","90071fa33c04869747b193ed524341a5c20b1b431ae758240fedb9325e0e9f05","wss://theforest.nostr1.com","root"],["p","44dc1c2db9c3fbd7bee9257eceb52be3cf8c40baf7b63f46e56b58a131c74f0b","","mention"],["p","b02b87007ceca9ffa3803df7c96ad371096cd43702020e6eff788818e164ee08","","mention"]]}] +[11:18:02.589] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Pues a mí todo esto me recuerda a The Raft, la flotilla que sale en la novela Snow Crash 🤷ðŸ»","created_at":1759418273,"id":"c77600503c8ae8e09f7643b692d365d507a8526c6921a4023aa9737a580152a7","kind":1,"pubkey":"85dff47ef82fe646ed848d828754bb4bfaae759e3462aefec3ace417656b8eed","sig":"9c7edfc6bbdafbfe9bb5463fe279593f6cc5a5cf931c4fff550c1db499ee5ba7c1bc93cc9eba4dc9aa36eb54b56eacb9199259dde68f0675fe273878aa59fe73","tags":[["alt","A short note: Pues a mí todo esto me recuerda a The Raft, la flo..."],["e","c234019556ba344ef68aeea522709b75528484bc75359923a58be35c74e171e3","wss://relay.damus.io/","root","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c"],["p","61854976ba1a538b9dfed1b1df9b42e57602790e9354c59891be7b3713db637c","wss://lightningrelay.com/"]]}] +[11:18:02.650] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Al Jazeera English\n\nhttps://www.aljazeera.com/news/2025/10/2/fact-check-us-2025-government-shutdown-talking-points\n\nSource: [Al Jazeera](https://t.me/aljazeeraglobal/120846)","created_at":1759418270,"id":"a5f37cfa6cb88cbd8af9abbfe4cf831f947e50a8424024b6b22f99272b2c1deb","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"7d40e5c17f061751d9217b1d7826bca3162d49f99089d0a0f32a1153886f1ef890542e9006401dfd70e0eba1be6270f03482949b45312650eb7510dc9bbb63ac","tags":[]}] +[11:18:02.710] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã™ã”ã„。ãƒãƒƒãƒˆã§ã¿ãŸå‹•画を信ã˜ã‚‰ã‚Œãªããªã‚‹ãªã€‚","created_at":1759418267,"id":"2226385fccdc4837ab35caac56d94ea1b822d02cb7f042040c529578dcaa0fc0","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"18312cf9c921d27ad30154d60745085da913bb4b087419bca78298b2c7df73c49b2d406438eadb495046ee5efd95a2a3bb7ff73a40e5d1db44bd71f6dd6c75a9","tags":[["alt","A short note: ã™ã”ã„。ãƒãƒƒãƒˆã§ã¿ãŸå‹•画を信ã˜ã‚‰ã‚Œãªããªã‚‹ãªã€‚"],["r","https://ã™ã”ã„。ãƒãƒƒãƒˆã§ã¿ãŸå‹•画を信ã˜ã‚‰ã‚Œãªããªã‚‹ãªã€‚"]]}] +[11:18:02.771] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Minimalist GM!","created_at":1759418267,"id":"fc7f2ab4f74183b063c07d56b65409df6884b5f77c029332126d140f020bb0e7","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"49151ded315c030fb7aaa2b7875583846f7b9034cbe2933bdffe6ceb6706002f03d46405a9179238c2cf8d26a2c72cc519a6b35f1582352db0b38b5db4f0aed3","tags":[["e","05560307e9d0647b45ec4adb86947a0d72fffc9395a73ac1403ef7caacc63f76","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","root"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","","mention"]]}] +[11:18:02.831] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Yield-bearing stablecoin supply just hit a record $20B+! 🚀 Up 33% in 2 months, showing growing demand for stablecoins that *earn* you yield. Top performers: srUSD, sUSDai, & xUSD. A potential shift in crypto user behavior? #stablecoins #DeFi #crypto\n\n#blockchain #news ","created_at":1759418252,"id":"b4c318921cbe5b2af9022fe934c8130e9a3ef13a7a83f911808b00b922615ecd","kind":1,"pubkey":"4e9a4f3335f19d04009dbab6d1e3af584777e2abe506867e7c20f79ee0e9b4e9","sig":"66273e98a27cb31a76766b879b5726c2b89c4543f4b2f020bdf32e59e17cf47e3d8ff68da85ac3fe8e61d1fb62e2c8a7ea3cf266b14d2978c9b269f23c586a51","tags":[]}] +[11:18:02.892] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418251,"id":"11d91c0f0e88ac67a708447a2f215840feb3f5274ac4a4be6c40585e19ce2729","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"3a8fee32ddefae0fbefbbae7940c38439c4f5b549d9c72b67424bf4452008886304857c2d538f299485587174ba0f981f1f485f3f937ea8a9d9c67beff8c8d4a","tags":[["e","685b32cdc8e21e969733b5bca65a89e507b1742e19777fd6e31b21bb721b13b7","wss://nostr.oxtr.dev","root"],["p","7a6b8c7de171955c214ded7e35cc782cd6dddfd141abb1929c632f69348e6f49","","mention"]]}] +[11:18:02.952] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"everyday all day\n\ndrill drill drill drill drill drill drill","created_at":1759418251,"id":"2768bc02feb6bbace8c7b178aeb6cd933167ef70a462c5c2cef089c9df1005f3","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"862551dbba03741fcb5fdde694409d8807fb01d915e26a15f281fdc2dfc3721c0a11a582f4e3c8e888069c6d1af713586f7c7822328228001b7e1073e39075a3","tags":[["e","af6cfb79aa942d4a3716a7c491b1bbaed65b1d2d5dba39669594dd607a946a4f","","root"],["e","3a1755aa7d44447127cc1b4d78d01a9075b3f66b281b52428aa9efa23d54c061","","reply"]]}] +[11:18:03.013] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"So much hypocrisy everywhere. It doesn't count when we do it is pretty much the motto of every partisan.","created_at":1759418249,"id":"8f906897028d903b318221926a9a907ef9a57c565f2d55cd22cd9829cf951bef","kind":1,"pubkey":"b3ac53e4eb5062b7f3747e63fe73e671174daf06660ef71dc72a71c971edd893","sig":"f8680eeaab10b655e7cb13bd2ff5d82d8e75a1cc3fc70b0654bcf97995235b2ea44f519d14906cba3f56ef7347b0fb96dce9dea1141574da860f8819d4c38a8f","tags":[["e","03ae98f3173bb39cd5ce1be69e149bbce9105fb163c7f2afc4b2f1f08747c754","wss://nos.lol","root"],["p","3c906042e889f081619588980bcf1ebca6a5443022ad6dd8205aba269577212b"],["r","wss://relay.primal.net/"]]}] +[11:18:03.073] RECV nos.lol:443: ["EOSE","pool_1_1759416878"] +[11:18:03.134] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Antonelli says “big meeting†with Mercedes after Monza led to Baku turnaround | Formula 1\n\nAndrea Kimi Antonelli said a \"big meeting\" with his Mercedes team led to his improved performance in Baku, where he scored his second-best result to date.\n\nRead more: https://www.racefans.net/2025/10/02/antonelli-says-big-meeting-with-mercedes-after-monza-led-to-baku-turnaround/","created_at":1759418282,"id":"1a0afacffe49fe10156972fb633ea876856cecfda7aefe7eccb06d49e1f6a224","kind":1,"pubkey":"5ddcd4fa6c18807394359d442e6e8a97e4cb201da147aca250807b39aa2191f6","sig":"2e3272e1ad4f9c7ec2a9c8579c098173f6b865507ad41be2a9eb1240a502ab659cbdbe890416eb60553ca37028cb5ede3576fa3f29a4c5b06d3e4084c6adce2f","tags":[["t","sports"],["t","newsbot"],["t","sportsbot"],["t","rss"],["t","racefans"],["t","f1"],["t","formula1"],["t","f12025"]]}] +[11:18:03.748] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM","created_at":1759418283,"id":"695d314c445acae72ab724621cd8462008bccae08b79c41fea82a8e62c4ee126","kind":1,"pubkey":"ff2f4cd786e42b4323749c91517ec7baf22dfd035b7a101bea83b6e2bcbacd15","sig":"d8cf3f03559238eb9b28b8dce76cc2d3c3c15e68a48cc51513f66bf15818870054c240c5dcda280e33850e84f55f790dd1feff2800ff5439705c320e525dacc7","tags":[["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://relay.primal.net","root"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","","mention"]]}] +[11:18:05.587] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ã‚‚ã†ãƒãƒƒãƒˆã¯ç„¡ç†ã§ã™","created_at":1759418284,"id":"37eb7cb2fa6f005ef2cf2cc93166351e5653ce261a8a66cf8306a94dd64f5d29","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"1e8adc007d0afcf4b6db17bd49978d35d21bf6f1bfc76b5a70b59c10d167849f1654a9e0ebb90a7fdc322b3b62aa87b84823e6e590c177280ffb620dd866fbfa","tags":[]}] +[11:18:07.197] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"GM!","created_at":1759418286,"id":"9ef723de14d65c267620f4becc24573473494b7e4dd3a9192f30f66fd13f185b","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"b64f8010a6f515c06187565127d192ca7bcec8f34d44bdbd22ca4dbdf71d029b1a9e101463ef6cfeb445b5c74fab533f65c30596ff0b0728bef866976f48eb6f","tags":[["e","20a1507f450cbcf6019a4152e4ff3176fce045fd9f38ba2c82b378550b743d6e","wss://relay.primal.net","root"],["p","5eb3fabed3800f7d8c237ef4b5c56f58ea16e497fad40cfdd742ddd735a033cd","","mention"]]}] +[11:18:09.249] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"電孿©Ÿå™¨ã®ã°ã‚‰ã—å‹•ç”»ã¨ã‹ã€‚","created_at":1759418288,"id":"20eee93c3fc1ca9579bea75da3aa301534db47fe9473da795532704646e1583e","kind":1,"pubkey":"9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902","sig":"47911606ef7383671c0fade6d48da8e407360a25f577d99297c40fa55ee3579501e90b10210eebaa1777cdbca2c7576156a3acf86d28e3204987cb0e04da35eb","tags":[["alt","A short note: 電孿©Ÿå™¨ã®ã°ã‚‰ã—å‹•ç”»ã¨ã‹ã€‚"]]}] +[11:18:10.653] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Swung by the nostr:nprofile1qqsfk2er6hu2wyffq0zdccqtp2fvgvterr70e77jha26wk83hxj0ajspr9mhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uq3uamnwvaz7tmwdaehgu3dwp6kytnhv4kxcmmjv3jhytnwv46z7ym2xss booth today to show some love & support to one of the greatest tools for financial inclusion in Africa! One network, one love! 🧡🇰🇪\nhttps://blossom.primal.net/7f1eb46f9e6c3cc7a9da2f52838faaec1b76568b6868bd7f1d7028de673506d7.jpg","created_at":1759418290,"id":"535964af7ad4830ac8f2ea93ab64de22a657d25b75f7af84194e12e139d53d8a","kind":1,"pubkey":"5f66d7d60c4b6e35fbf746b47f26ef228cc324232ced692bc30246648736ffdb","sig":"7a249fd722e5991046d89531ccf04ba6249dbfa4a52f19ea15d373aa61f28456a56ffe9b8e89e326fc3e5cf8b1de3c6d7bbb909a1add33f1054b28289869281b","tags":[["p","9b2b23d5f8a7112903c4dc600b0a92c4317918fcfcfbd2bf55a758f1b9a4feca","wss://relay.snort.social/","mention"]]}] +[11:18:10.825] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"ãŠã‚ãŠã‚ã®ãŠã‚","created_at":1759418290,"id":"03b169bc25ffad3f1584a56f14af40367503069c5ed1ef03b489b2bfb585f46e","kind":1,"pubkey":"82b30d30444170e6a8c819e8406e362a3695454a4617894ce2706f3840c6c003","sig":"5811c8776d0ef2dc43e10733df2ac85b66879a78800bf59e1b34c5f92ff0a75803b31da170394aacc06ee9822f67ad3b3354290ed370cb3f759de41602c7634e","tags":[]}] +[11:18:10.996] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Langes Wochenende. Ich freue mich.","created_at":1759418290,"id":"7e8307d79100635ca05a553c2361935396dad5ec69cf158e51b8a4b5c297c128","kind":1,"pubkey":"7c0cb9ebf4e3c5419832c8c6af2e1d06704648ddb39100794a46632567fde9df","sig":"62f53c335ac66c30160a787987dea598c99a66023d4bff7466d75d099e60bbc85dbc258ec0c8eb83b46548c90ca98b9371c74eb16c3aaa0b29b3cdc359369e40","tags":[]}] +[11:18:11.168] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"Thanks!! Proof of work","created_at":1759418291,"id":"7358baa5521468fb81210c0245a6fc5cfb146bd842786673d953877f0c9b6d75","kind":1,"pubkey":"f0c387141559f1cdc6ce2f7c9d470960b4e6310aa5b97296bbe4590550b06599","sig":"61c727e3049ab014fedc5557114f95b1842c61eb4c79648c57240e56c87a9c7517fa8a2ffa3c76c222401dfc080a80f43794dae42930d8df79dcbaa31305ab6a","tags":[["alt","A short note: Thanks!! Proof of work"],["e","b522c847ab758a6838bfc8b3a60ce79896fa3b00624e3d1288cd6f2a54ec2c66","wss://relay.damus.io/","root","f0c387141559f1cdc6ce2f7c9d470960b4e6310aa5b97296bbe4590550b06599"],["e","6e5b1c9ffe5b6edd088304eb0d5bd94556fd628c6462616350fd17e74a573d0c","wss://relay.damus.io/","reply","428d9b92e962bdb6ad9b178ffaa734c369eff3c43590eb9f3d3eea059e28d38a"],["p","f0c387141559f1cdc6ce2f7c9d470960b4e6310aa5b97296bbe4590550b06599","wss://nos.lol/"],["p","428d9b92e962bdb6ad9b178ffaa734c369eff3c43590eb9f3d3eea059e28d38a","wss://relay.primal.net/"]]}] +[11:18:12.173] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759416878", { + "kinds": [1], + "since": 1759416872, + "limit": 10 + }] +[11:18:12.284] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,389\nBlock Hash: 000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c\nTimestamp: 2025-10-02T15:10:52.000Z\nTransactions: 2,057\nBlock Size: 1.68 MB\nBlock Weight: 3,993,795 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917389","created_at":1759417870,"id":"9421aefe25a76ca1210764e1299ca235a8468698054c226b70ff98523245b93a","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"5f6277e2d223d383defa904edde24e19606e1b563bae22083374a80e9cb00ac6b22d76a01b07ff6e818a904e084dc7314cec68a2f5efe49875773b55c26d7a62","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917389"],["published_at","1759417852"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["new_block","true"],["block_height","917389"],["block_hash","000000000000000000007169d9a7550e8c91b50311d678b1db51cd1f78274e8c"],["block_time","1759417852"],["tx_count","2057"],["block_size","1759383"],["block_weight","3993795"],["difficulty","150839487445890.5"],["previous_block","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["mempool_tx_count","1682"],["mempool_size","498770"],["memory_usage_pct","1.1"]]}] +[11:18:12.345] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759416878",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,388\nBlock Hash: 000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93\nTimestamp: 2025-10-02T15:08:36.000Z\nTransactions: 2,833\nBlock Size: 1.51 MB\nBlock Weight: 3,993,363 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917388","created_at":1759417740,"id":"daf87e0e76adfaff8993106aebdd36263d563f2de822622011a8be3473517ba5","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8a9c008e7ff8eb092ce5263e4aad00e97127bce04eca1f5107b7a46b2310de524928bfa3e706c4841be5fa178578287d06bebf37c102234469b87e711e9deaa9","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917388"],["published_at","1759417716"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["new_block","true"],["block_height","917388"],["block_hash","000000000000000000011f191d2c4f3aa8bf2a2db71ba41c6087aec16ad1cc93"],["block_time","1759417716"],["tx_count","2833"],["block_size","1587513"],["block_weight","3993363"],["difficulty","150839487445890.5"],["previous_block","000000000000000000019bd2e0afccdff0495ac3afd3af9cc96a8bddea1b3e20"],["mempool_tx_count","2573"],["mempool_size","1003032"],["memory_usage_pct","2"]]}] +[11:18:12.345] RECV nos.lol:443: ["EVENT","pool_1_1759416878",{"content":"\"